Skip to main content
DELETE
/
api
/
r2r
/
v3
/
indices
/
{table_name}
/
{index_name}
Delete Vector Index
curl --request DELETE \
  --url https://api.intelligence.io.solutions/api/r2r/v3/indices/{table_name}/{index_name} \
  --header 'Authorization: Bearer <token>'
{
  "results": {
    "message": "message"
  }
}
This endpoint removes the specified index from the database. Important considerations:
  • Deletion is permanent and cannot be undone
  • Underlying vector data remains intact
  • Queries will fall back to sequential scan
  • Running queries during deletion may be slower
  • Use run_with_orchestration=True for large indices to prevent timeouts
  • Consider index dependencies before deletion
The operation returns immediately but cleanup may continue in background.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

table_name
enum<string>
required

The table of vector embeddings to delete (e.g. vectors, entity, document_collections)

Available options:
chunks,
documents_entities,
graphs_entities,
graphs_communities
index_name
string
required

The name of the index to delete

Response

200

results
object
I