Skip to content

Delete thread

Deprecated
DELETE/threads/{thread_id}

Delete a thread.

Path ParametersExpand Collapse
thread_id: string
ReturnsExpand Collapse
ThreadDeleted = object { id, deleted, object }
id: string
deleted: boolean
object: "thread.deleted"

Delete thread

curl https://api.openai.com/v1/threads/$THREAD_ID \
    -X DELETE \
    -H 'OpenAI-Beta: assistants=v2' \
    -H "Authorization: Bearer $OPENAI_API_KEY"
{
  "id": "id",
  "deleted": true,
  "object": "thread.deleted"
}
Returns Examples
{
  "id": "id",
  "deleted": true,
  "object": "thread.deleted"
}