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

Delete file

DELETE/files/{file_id}

Delete a file and remove it from all vector stores.

Path ParametersExpand Collapse
file_id: string
ReturnsExpand Collapse
FileDeleted = object { id, deleted, object }
id: string
deleted: boolean
object: "file"

Delete file

curl https://api.openai.com/v1/files/file-abc123 \
  -X DELETE \
  -H "Authorization: Bearer $OPENAI_API_KEY"
{
  "id": "file-abc123",
  "object": "file",
  "deleted": true
}
Returns Examples
{
  "id": "file-abc123",
  "object": "file",
  "deleted": true
}