Skip to content
POST/tags

Create a tag

Create a new tag

Request body

FieldTypeDescription
namerequiredstringTag name
colorstringTag color

Response

Tag created

FieldTypeDescription
idrequiredstringTypeID - a type-prefixed UUID
namerequiredstring
colorrequiredstringHex color code
createdAtrequiredstringISO 8601 timestamp

Errors

400Validation error
401Unauthorized

Example request

curl \
  -X POST \
  "https://feedback.quackback.io/api/v1/tags" \
  -H "Authorization: Bearer qb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "name": "Bug",
  "color": "#3b82f6"
}'