Skip to content

Delete a conversation

DELETE/conversations/{conversation_id}

Delete a conversation. Items in the conversation will not be deleted.

Path ParametersExpand Collapse
conversation_id: string
ReturnsExpand Collapse
ConversationDeletedResource = object { id, deleted, object }
id: string
deleted: boolean
object: "conversation.deleted"

Delete a conversation

curl https://api.openai.com/v1/conversations/$CONVERSATION_ID \
    -X DELETE \
    -H "Authorization: Bearer $OPENAI_API_KEY"
{
  "id": "id",
  "deleted": true,
  "object": "conversation.deleted"
}
Returns Examples
{
  "id": "id",
  "deleted": true,
  "object": "conversation.deleted"
}