Delete Store
DELETE/v1/stores/{store_identifier}
Authorization
Authorizationstringrequired
Bearer token for API authentication. Format: `Bearer YOUR_API_KEY`
Path Parameters
store_identifierstringrequired
The ID or name of the store to delete
Response Body
idstring | stringrequired
ID of the deleted store
deletedbooleanrequired
Whether the deletion was successful
objectstringdefault:
storeType of the deleted object
Request
DELETE/v1/stores/{store_identifier}
from mixedbread import Mixedbread
mxbai = Mixedbread(api_key="YOUR_API_KEY")
response = mxbai.stores.delete(store_identifier="my-knowledge-base")
print(response)Response
JSON
{
"id": "vs_abc123",
"object": "store",
"deleted": true
}Last updated: January 7, 2026