API referenceAgents and workflowsRetrieval
Retrieval
9 operations.
RAG store status (enabled, ready, endpoint)
GET /api/v1/rag
List RAG collections
GET /api/v1/rag/collections
Create a RAG collection
POST /api/v1/rag/collections
Delete a RAG collection and its documents
DELETE /api/v1/rag/collections/{name}
List a collection's documents
GET /api/v1/rag/collections/{name}/documents
Upload a document (text or base64 pdf/txt/md/json/csv): extracted, chunked, embedded, indexed
POST /api/v1/rag/collections/{name}/documents
Delete a document (its vectors are removed)
DELETE /api/v1/rag/collections/{name}/documents/{docId}
Disable RAG: deletes the store, collections and documents
POST /api/v1/rag/disable
Enable RAG: provisions the tenant's managed Qdrant store on the chosen subnet
POST /api/v1/rag/enable