Tags

Create a tag

Create a tag.

POST
/settings/tags

Create a tag.

Authorization

bearerToken
AuthorizationBearer <token>

Personal access tokens created from the ThriveDesk UI. Create one under Integrations -> API Keys.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Fields accepted by tag create.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/settings/tags" \  -H "Content-Type: application/json" \  -d '{    "name": "Billing",    "color": "#FF0000"  }'
{  "message": "string",  "tag": {    "id": "string",    "name": "string",    "color": "string",    "conversations_count": 0  }}