Skip to content
PATCH/tags/{tagId}

Update a tag

Update an existing tag

Parameters

NameInTypeDescription
tagIdrequiredpathstringTag ID

Request body

FieldTypeDescription
namestring
colorstringHex color code

Response

Tag updated

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

Errors

400Validation error
401Unauthorized
404Tag not found

Example request

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