Remove an additional vector store attachment from a space.
DELETEhttps://api.aitronos.com/v1/spaces/{space_id}/vector-stores/{vector_store_id}
Detach an additional vector store from a space. The vector store itself is not deleted, only the association is removed. Requires edit access to the space.
space_id string required
The unique identifier of the space.
vector_store_id string required
The unique identifier of the vector store to detach.
No content (204).
cURL
- Bash
- Python
- JavaScript
curl -X DELETE "https://api.aitronos.com/v1/spaces/space_abc123/vector-stores/vs_def456" \
-H "X-API-Key: $FREDDY_API_KEY"