Tags

Update tag

Updates a tag's name or description.

PUT
/tag/{tagId}

Path Parameters

tagId*integer

The ID of the tag.

Range0 < value

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X PUT "https://example.com/tag/1" \  -H "Content-Type: application/json" \  -d '{}'
{  "id": 1,  "name": "Events",  "description": "Company events and offsites."}
{  "code": "string",  "error": "string",  "issues": [    {      "message": "string",      "path": "string"    }  ]}