Update a tag

Updates the specified tag by setting the values of the parameters passed. Any parameters not provided will be left unchanged.

PATCH/v3/tags/{id}
JWT
tag:write

Parameters

NameTypeInDescription
id*stringpathUnique identifier for the tag.

Request Body Schema

PropertyTypeDescriptionConstraints
descriptionstringDescription for the tag.min: 1, max: 256

Request Example

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

Responses

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