Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 602 Bytes

File metadata and controls

35 lines (25 loc) · 602 Bytes

Delete a model response

delete /responses/{response_id}

Deletes a model response with the given ID.

Path Parameters

  • response_id: string

Example

curl https://api.openai.com/v1/responses/$RESPONSE_ID \
    -X DELETE \
    -H "Authorization: Bearer $OPENAI_API_KEY"

Example

curl -X DELETE https://api.openai.com/v1/responses/resp_123 \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $OPENAI_API_KEY"

Response

{
  "id": "resp_6786a1bec27481909a17d673315b29f6",
  "object": "response",
  "deleted": true
}