PATCH
/tags/{tagId}Update a tag
Update an existing tag
Parameters
| Name | In | Type | Description |
|---|---|---|---|
tagIdrequired | path | string | Tag ID |
Request body
| Field | Type | Description |
|---|---|---|
name | string | |
color | string | Hex color code |
Response
Tag updated
| Field | Type | Description |
|---|---|---|
idrequired | string | TypeID - a type-prefixed UUID |
namerequired | string | |
colorrequired | string | Hex color code |
createdAtrequired | string | ISO 8601 timestamp |
Errors
400Validation error401Unauthorized404Tag not foundExample 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"
}'