Create Label

POST

/v1/labels

Creates a new label with a customizable name and color hex code for categorization.

Parameters

NameTypeDescription
titlerequiredstringLabel name/title
colorstringHex color code (e.g. '#3B82F6')
descriptionstringOptional label purpose description

Responses

200Label created
{
  "data": {
    "id": "lbl_15",
    "title": "Billing Escalation",
    "color": "#F59E0B",
    "description": "Urgent invoice inquiries"
  }
}