Skip to content
Last updated

Permanently delete a vector store.

DELETEhttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/stores/{store_id}

Permanently deletes the specified vector store and all of its contents. This action cannot be undone. Requires the MANAGE_KNOWLEDGE_SLICES capability.

Path Parameters

organization_id string required

The unique identifier of the organization (format: org_*).

store_id string required

The unique identifier of the vector store (format: vs_*).


Returns

No content (HTTP 204).

cURL
curl -X DELETE https://api.aitronos.com/v1/organizations/org_xyz789/knowledge/stores/vs_store123 \
  -H "Authorization: Bearer $ACCESS_TOKEN"