Sets which attributes an index can be filtered on.
Sets which attributes an index can be filtered on. Replaces the whole filterable set.
PATCH /v1/index/indexes/{uid}/settings
| Address | https://api.hanzo.ai/v1/index/indexes/{uid}/settings |
| Method | PATCH |
| Operation | patch_index_indexes_by_uid_settings |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Sets which attributes an index can be filtered on.
Replaces the whole filterable set. An attribute not listed here cannot be
used in a search filter, so this is what makes a per-user or per-tag
narrowing possible at all.
It CREATES the index when it is missing rather than answering 404, because a Meilisearch client configures settings on an index it has just asked for and a refusal there leaves the client with no index at all.
The 202 and its enqueued task are DIALECT COMPATIBILITY, not a promise of
later work: the setting is already applied when this answers.
Request
2 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
uid | path | string | yes | |
filterableAttributes | body | string[] | — | FilterableAttributes replaces the whole filterable set. |
Response
| Status | Body | Meaning |
|---|---|---|
202 | indexEnqueued | accepted |
202 body — 5 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
enqueuedAt | body | string | — | EnqueuedAt is when the task was recorded, RFC 3339 — which is also when it completed. |
indexUid | body | string | — | IndexUID names the index the write landed in. |
status | body | string | — | Status is always enqueued, for dialect compatibility. |
taskUid | body | integer | — | TaskUID identifies the task for a client that polls it. |
type | body | string | — | Type is the dialect's name for the kind of write: indexCreation, indexDeletion, settingsUpdate, documentAdditionOrUpdate, documentDeletion. |
Failure carries the platform error shape — see Errors.
Examples
hanzo index indexes settings patch <uid>import { Configuration, IndexApi } from 'hanzoai';
const api = new IndexApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.patchIndexIndexesByUidSettings({ uid: 'uid', filterableAttributes: ["<filterableAttributes>"] });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import IndexApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = IndexApi(client).patch_index_indexes_by_uid_settings(uid='uid', filterable_attributes=["<filterableAttributes>"])cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.IndexAPI.PatchIndexIndexesByUidSettings(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, index_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = index_api::patch_index_indexes_by_uid_settings(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.IndexApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new IndexApi(client).patchIndexIndexesByUidSettings();curl -X PATCH https://api.hanzo.ai/v1/index/indexes/<uid>/settings \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"filterableAttributes": [
"<filterableAttributes>"
]
}'The door reaches index through the index tool, which names its 17 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "get_index_health"
}
}
}'How is this guide?