Delete a conversation
DELETE/conversations/{conversation_id}
Delete a conversation. Items in the conversation will not be deleted.
Path Parameters
conversation_id: string
Returns
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
}