🌍 Global Mirror — Visit original CN site →
Skip to content
Primary navigation

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 -X DELETE https://api.openai.com/v1/conversations/conv_123 \
  -H "Authorization: Bearer $OPENAI_API_KEY"
{
  "id": "conv_123",
  "object": "conversation.deleted",
  "deleted": true
}
Returns Examples
{
  "id": "conv_123",
  "object": "conversation.deleted",
  "deleted": true
}