Namespaces
Update Namespace
Fully updates an existing namespace (all fields required)
PUT
Headers
Bearer token authentication using your API key. Format: 'Bearer your_api_key'. To get an API key, create an account at mixpeek.com/start and generate a key in your account settings. Example: 'Bearer sk_1234567890abcdef'
Path Parameters
Either the namespace name or namespace ID
Example:
"my_namespace"
Body
application/json
Request schema for updating a namespace's payload indexes
Name of the namespace to update
Example:
"spotify_playlists_dev"
Updated list of payload index configurations
Configuration for a payload index
Example:
[
{
"field_name": "metadata.title",
"field_schema": {
"lowercase": true,
"max_token_len": 15,
"min_token_len": 2,
"tokenizer": "word",
"type": "text"
},
"type": "text"
},
{
"field_name": "metadata.description",
"field_schema": { "is_tenant": false, "type": "keyword" },
"type": "keyword"
}
]
Was this page helpful?