Permanently delete a vector store and remove all associated files.
DELETEhttps://api.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.
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 204 No Content on successful deletion. No response body is returned.
Bash
- Bash
- Python
- JavaScript
curl -X DELETE "https://api.freddy.aitronos.com/v1/organizations/org_abc123/vector-stores/vs_abc123" \
-H "X-API-Key: $FREDDY_API_KEY"Response:
Empty response body. The vector store has been successfully deleted.