v1

latestOpenAPI 3.1.02026-08-066378446.6 KB
Account

Create tag

<small>Requires an API token with the Tag Manager role.</small>

Creates a new tag in your account.

Tags are simple labels that can be assigned to documents and templates.

post/tags

Request body

namestring required

The name of the tag.

colorstring required

The color of the tag as a hex string.

Example request

{
  "name": "Warranty",
  "color": "#615fff"
}

Response

TagResource

Example response

{
  "data": {
    "uuid": "58ac52bb-8885-4580-88c1-7a7bc772c87d",
    "name": "Warranty",
    "color": "#615fff"
  }
}