Docs Blog Sign in

Tags

Tags are free-text labels attached to tickets. The tags API provides autocomplete and search across all existing tags in your workspace.

List tags

GET /helpdesk/api/tags

Returns an array of unique tag strings matching the search query.

Query parameters

ParameterTypeRequiredDescription
searchstringnoFilter tags containing this substring
limitintegernoMaximum results (default: 100, max: 100)

Response

{
  "success": true,
  "data": ["billing", "bug", "feature-request", "urgent", "vip"]
}

Tags are created implicitly when added to tickets — there is no separate tag creation endpoint. Use the Tickets API to add or remove tags from tickets.