v5
latestOpenAPI 3.1.02026-08-025631,1012.8 MBNamespaces
Partially Update Namespace
Partially updates an existing namespace (PATCH operation)
patch/v1/namespaces/{namespace_identifier}
Path parameters
namespace_identifierstring required
Either the namespace name or namespace ID
Example:my_namespace
Either the namespace name or namespace ID
Request body
Example request
{
"namespace_name": "product-search",
"payload_indexes": [
{
"description": "User-created text index for full-text search",
"field_name": "metadata.description",
"is_protected": false,
"type": "text"
}
],
"auto_create_indexes": true,
"infrastructure": {
"autoscaling_enabled": false,
"compute_tier": "shared",
"description": "Shared development namespace",
"max_concurrent_jobs": 10,
"qdrant_collection": "ns_dev",
"ray_head_node_url": "ray://shared-cluster:10001"
}
}Response
Successful Response
Example response
{
"namespace_name": "product-search",
"infrastructure": {
"autoscaling_enabled": false,
"compute_tier": "shared",
"description": "Shared development namespace",
"max_concurrent_jobs": 10,
"qdrant_collection": "ns_dev",
"ray_head_node_url": "ray://shared-cluster:10001"
},
"cluster_id": "iclstr_abc123xyz",
"payload_indexes": [
{
"description": "User-created text index for full-text search",
"field_name": "metadata.description",
"is_protected": false,
"type": "text"
}
]
}