API ReferenceClusters
Rename Cluster
Rename a cluster
Rename Cluster
Updates the display name of a cluster.
-
id(integer) (required) — The cluster ID -
name(string) (required) — New name for the cluster (max 100 characters)
curl -X PATCH https://api.hermes.camie.ai/clusters/202/rename \
-H "Authorization: Bearer hermes_your_api_key" \
-H "Content-Type: application/json" \
-d '{ "name": "Production Outreach" }'Response
{
"success": true,
"data": {
"id": 202,
"name": "Production Outreach"
}
}