Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Permanently delete a vector store and remove all associated files.
DELETEhttps://api.freddy.aitronos.com/v1/organizations/{organization_id}/vector-stores/{vector_store_id}

Permanently removes a vector store. Files in the store are not deleted from organization storage, only their association with this store is removed.

Path Parameters

organization_id string required

The unique identifier of the organization.

vector_store_id string required

The unique identifier of the vector store to delete.


Returns

A deletion confirmation response.

Bash
curl -X DELETE "https://api.freddy.aitronos.com/v1/organizations/org_abc123/vector-stores/vs_abc123" \
  -H "X-API-Key: $FREDDY_API_KEY"

Response

{
  "id": "vs_abc123",
  "deleted": true
}