Resources
Vector Stores Files — Delete
OpenAI API endpoint method reference.
This English page is rendered from the official Markdown mirror in this repository.View on OpenAI ↗
For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending
.mdto the page URL.
Delete vector store file
delete /vector_stores/{vector_store_id}/files/{file_id}
Delete a vector store file. This will remove the file from the vector store but the file itself will not be deleted. To delete the file, use the delete file↗ endpoint.
Path Parameters
-
vector_store_id: string -
file_id: string
Returns
-
VectorStoreFileDeleted object { id, deleted, object }-
id: string -
deleted: boolean -
object: "vector_store.file.deleted""vector_store.file.deleted"
-
Example
curl https://api.openai.com/v1/vector_stores/$VECTOR_STORE_ID/files/$FILE_ID \
-X DELETE \
-H 'OpenAI-Beta: assistants=v2' \
-H "Authorization: Bearer $OPENAI_API_KEY"
Response
{
"id": "id",
"deleted": true,
"object": "vector_store.file.deleted"
}
Example
curl https://api.openai.com/v1/vector_stores/vs_abc123/files/file-abc123 \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-H "Content-Type: application/json" \
-H "OpenAI-Beta: assistants=v2" \
-X DELETE
Response
{
id: "file-abc123",
object: "vector_store.file.deleted",
deleted: true
}