APITags

Create tag

Create a new tag.

POST/tags

Create a new tag.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Fields for creating a tag.

Response Body

application/json

application/json

curl -X POST "https://example.com/tags" \  -H "Content-Type: application/json" \  -d '{    "namespace": "agent",    "name": "string",    "color": "red"  }'
{  "id": null,  "namespace": "agent",  "name": "string",  "color": "red",  "created_at": "2019-08-24T14:15:22Z",  "updated_at": "2019-08-24T14:15:22Z"}