Modify the name, description, or access settings of a vector store.
Update vector store metadata and access control settings.
organization_id string required
The unique identifier of the organization.
vector_store_id string required
The unique identifier of the vector store to update.
name string optional
New name for the vector store.
description string optional
New description for the vector store.
access_mode string optional
New access control level: public, organization, department, or private.
access_departments array optional
Updated list of department IDs with access.
access_users array optional
Updated list of user IDs with access.
flowplate_project_id string optional
Associate this vector store with a Flowplate project.
flow_id string optional
Associate this vector store with a specific flow.
The updated Vector Store object.
- Bash
- Python
- Python
- JavaScript
curl -X PATCH "https://api.aitronos.com/v1/organizations/org_abc123/vector-stores/vs_xyz789" \
-H "X-API-Key: $FREDDY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Updated Knowledge Base",
"description": "Updated product documentation",
"access_mode": "organization"
}'