Create a tag

Creates a new tag.

POST/v3/tags
JWT
tag:write

Request Body Schema

PropertyTypeDescriptionConstraints
name*stringName of the tag.min: 1, max: 256
description*stringDescription for the tag.min: 1, max: 256

Request Example

{
  "name": "string",
  "description": "string"
}
Triggers webhook: tag.created
POST <your-webhook-url>
{
  "event": "tag.created",
  "data": {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "name": "string",
    "description": "string"
  },
  "triggeredAt": "string"
}

Responses

201 Created
{
  "id": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "name": "string",
  "description": "string"
}