POST
/
v1
/
ticketing
/
{collection_id}
/
tags
curl --request POST \
  --url http://localhost:8000/api/v1/ticketing/{collection_id}/tags \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "color": "<string>"
}'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "color": "<string>"
  }
}

Path Parameters

collection_id
string
required

Query Parameters

raw
boolean

Include raw response. When you want more data from the source

Body

application/json
name
string
required
description
string
required
color
string
required

Response

201 - application/json
data
object
required