Skip to content
Last updated

Attach an additional external vector store to a space for expanded knowledge access during conversations.

POSThttps://api.aitronos.com/v1/spaces/{space_id}/vector-stores/{vector_store_id}

Attach an existing vector store to a space as an additional knowledge source. Threads in this space will automatically include the attached vector store's data during RAG-powered conversations. Requires edit access to the space.

Path Parameters

space_id string required

The unique identifier of the space (e.g., space_abc123...).

vector_store_id string required

The unique identifier of the vector store to attach (e.g., vs_abc123...). Must belong to the same organization as the space.


Returns

A success object with the space ID, vector store ID, and timestamp of when the attachment was created.

cURL
curl -X POST "https://api.aitronos.com/v1/spaces/space_abc123/vector-stores/vs_def456" \
  -H "X-API-Key: $FREDDY_API_KEY"