SpyBara
Go Premium

resources/conversations/methods/delete/index.md 2026-04-11 05:41 UTC to 2026-04-15 05:55 UTC

1 added, 1 removed.

2026
Thu 30 06:13 Tue 28 06:15 Thu 23 05:56 Wed 15 05:55 Sat 11 05:41 Sat 4 05:38

Delete a conversation

delete /conversations/{conversation_id}

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

Path Parameters

  • conversation_id: string

Returns

  • ConversationDeletedResource object { id, deleted, object }

    • id: string

    • deleted: boolean

    • object: "conversation.deleted"

      • "conversation.deleted"

Example

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

Response

{
  "id": "id",
  "deleted": true,
  "object": "conversation.deleted"
}

Example

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

Response

{
  "id": "conv_123",
  "object": "conversation.deleted",
  "deleted": true
}