v1

latestOpenAPI 3.0.32026-07-1419076.2 KB

Update a Specific Tag

This endpoint creates a new tag and associates it with the client.

put/tags/{id}

Path parameters

idinteger required

The ID used to identify the tag.

Request body

namestring required

The name used to easily identify the domain. Allowed values are between 2 and 255 characters.

statusstring required

The status of the domain. Allowed values are active and inactive.

colorstring required

A hexidecimal color value.

Response

201

Example response

{
  "data": {
    "id": 1,
    "name": "Important",
    "color": "#C0382B",
    "status": "active"
  }
}