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

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_abc123 \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "OpenAI-Beta: assistants=v2" \
  -X DELETE
{
  "id": "thread_abc123",
  "object": "thread.deleted",
  "deleted": true
}
Returns Examples
{
  "id": "thread_abc123",
  "object": "thread.deleted",
  "deleted": true
}