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 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"
}