VoxLink.ai

API Reference

Update label

Rename a label or change its color

Updated 30 June 2026

Update a label's name or color. Only the fields you send are changed.

Path Parameters

idintegerrequired

The label ID. Must belong to your account.

Request Body

namestring

New name (max 255 characters). Must be unique within your account.

colorstring

New color. One of: gray, slate, red, orange, amber, green, teal, blue, purple, pink. Send null to clear it.

Response

messagestring

Success message

dataobject

idinteger

The label ID

namestring

The label name

colorstring

The label color (or null)

assistants_countinteger

Number of assistants this label is applied to

{
  "message": "Label updated successfully",
  "data": { "id": 3, "name": "Inbound calls", "color": "teal", "assistants_count": 7 }
}
{ "message": "Label not found" }

Related guides