Label
Update Label
Partially updates a label. Only fields present in the request body are applied (pointer-nil merge semantics). Renaming a label cascades updates to scorecard criteria and intelligence-item-collection criteria that reference the old label name. Cross-organization updates return 404.
patch/labels/{id}
Path parameters
idstring required
UUID of the label to update.
Request body
Example request
{
"name": "Buying Signal (v2)",
"description": "Updated description of the buying signal label.",
"aiFlow": false
}Response
Label successfully updated
Example response
{
"data": {
"uuid": "fe515723-fe2e-4959-a5fa-c4d3937fe7e4",
"name": "Buying Signal",
"description": "Conversations where the prospect expresses a buying signal.",
"aiFlow": true,
"allTeams": false,
"isDefaultTemplate": false,
"options": [],
"organizationUUID": "16b78cec-82ef-46d2-8213-5d3bb7d2571c",
"createdAt": "2026-04-16T18:00:00Z"
}
}