v1

latestOpenAPI 3.0.32026-07-264955102.7 KB
Tags

Create tag

Creates a new tag on the team. The tag key is auto-generated by slugifying the name.

post/v2/api/tags

Request body

namestring required

Tag display name. The key (identifier) is derived from it.

colorstring nullable

Optional hex color (e.g. #FF0000).

Example request

{
  "name": "Interested",
  "color": "#123456"
}

Response

Tag created

Example response

{
  "data": {
    "id": "tag-abc123",
    "name": "qualified",
    "color": "#00AA00"
  }
}