Skip to content

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_ID \
    -X DELETE \
    -H "Authorization: Bearer $OPENAI_API_KEY"
{
  "id": "id",
  "deleted": true,
  "object": "file"
}
Returns Examples
{
  "id": "id",
  "deleted": true,
  "object": "file"
}