Reference
Qdrant
Connect Qdrant to Alter Vault for secure API access
Overview
Section titled “Overview”Use Qdrant credentials to make authenticated API calls through Alter Vault without exposing API keys in code.
| Property | Value |
|---|---|
| Provider ID | qdrant |
| Category | AI |
| Credential Type | API Key |
Step 1: Get Credentials
Section titled “Step 1: Get Credentials”Log in to Qdrant Cloud
Log in to Qdrant Cloud and open the cluster.
Create an API key
Open the API Keys tab and create a key (optionally read-only or scoped to collections).
Copy the key
Copy the key — it is only shown once.
Step 2: Add to Alter Vault
Section titled “Step 2: Add to Alter Vault”Open the Developer Portal
Go to portal.alterauth.com and navigate to the application.
Add Qdrant
Go to Managed Secrets > Add Provider > Qdrant.
Enter credentials
Paste your API Key into the credential field.
Enter the deployment endpoint
Paste your Cluster endpoint — copy it from the Qdrant Cloud console’s cluster details. Alter derives this credential’s allowed hosts from that exact host, so proxied calls can only ever reach your deployment. The allowlist cannot be widened or edited separately; rotate the credential with a new endpoint to retarget it.
Save
Click Save. You’ll receive a grant_id to use with the SDK.
Using in Code
Section titled “Using in Code”response = await alter_app.request( HttpMethod.POST, "https://YOUR-CLUSTER.cloud.qdrant.io/collections/my-collection/points/search", grant_id="YOUR_GRANT_ID", json={"vector": [0.05, 0.61, 0.76, 0.74], "limit": 5, "with_payload": True},)- The key is injected via the
api-keyheader.
Policy-cataloged operations
Section titled “Policy-cataloged operations”Alter policy rules can target these attested operations and families for operation-level and parameter-aware controls.
| Operation ID | Families | Method | Provider path | Notes |
|---|---|---|---|---|
get_collections | read | GET | /collections | — |
get_collection | read | GET | /collections/{collection_name} | — |
collection_exists | read | GET | /collections/{collection_name}/exists | — |
create_collection | write | PUT | /collections/{collection_name} | — |
update_collection | write | PATCH | /collections/{collection_name} | — |
delete_collection | delete | DELETE | /collections/{collection_name} | — |
upsert_points | write | PUT | /collections/{collection_name}/points | — |
update_vectors | write | PUT | /collections/{collection_name}/points/vectors | — |
delete_vectors | delete | POST | /collections/{collection_name}/points/vectors/delete | — |
get_point | read | GET | /collections/{collection_name}/points/{id} | — |
get_points | read | POST | /collections/{collection_name}/points | — |
scroll_points | read | POST | /collections/{collection_name}/points/scroll | — |
count_points | read | POST | /collections/{collection_name}/points/count | — |
delete_points | delete | POST | /collections/{collection_name}/points/delete | — |
search_points | read | POST | /collections/{collection_name}/points/search | served by the provider but absent from its published spec |
search_batch_points | read | POST | /collections/{collection_name}/points/search/batch | served by the provider but absent from its published spec |
search_point_groups | read | POST | /collections/{collection_name}/points/search/groups | served by the provider but absent from its published spec |
query_points | read | POST | /collections/{collection_name}/points/query | — |
query_batch_points | read | POST | /collections/{collection_name}/points/query/batch | — |
query_points_groups | read | POST | /collections/{collection_name}/points/query/groups | — |
recommend_points | read | POST | /collections/{collection_name}/points/recommend | served by the provider but absent from its published spec |
recommend_batch_points | read | POST | /collections/{collection_name}/points/recommend/batch | served by the provider but absent from its published spec |
discover_points | read | POST | /collections/{collection_name}/points/discover | served by the provider but absent from its published spec |
facet | read | POST | /collections/{collection_name}/facet | — |
set_payload | write | POST | /collections/{collection_name}/points/payload | — |
overwrite_payload | write | PUT | /collections/{collection_name}/points/payload | — |
delete_payload | delete | POST | /collections/{collection_name}/points/payload/delete | — |
clear_payload | delete | POST | /collections/{collection_name}/points/payload/clear | — |
update_aliases | delete, write | POST | /collections/aliases | — |
get_collection_aliases | read | GET | /collections/{collection_name}/aliases | — |
get_collections_aliases | read | GET | /aliases | — |
create_field_index | write | PUT | /collections/{collection_name}/index | — |
delete_field_index | delete | DELETE | /collections/{collection_name}/index/{field_name} | — |
create_snapshot | write | POST | /collections/{collection_name}/snapshots | — |
list_snapshots | read | GET | /collections/{collection_name}/snapshots | — |
delete_snapshot | delete | DELETE | /collections/{collection_name}/snapshots/{snapshot_name} | — |
recover_from_snapshot | write | PUT | /collections/{collection_name}/snapshots/recover | — |