PATCH
/statuses/{statusId}Update a status
Update an existing status. Note: slug, category, and position cannot be changed via this endpoint.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
statusIdrequired | path | string | Status ID |
Request body
| Field | Type | Description |
|---|---|---|
name | string | |
color | string | Hex color code |
showOnRoadmap | boolean | |
isDefault | boolean |
Response
Status updated
| Field | Type | Description |
|---|---|---|
idrequired | string | TypeID - a type-prefixed UUID |
namerequired | string | |
slugrequired | string | URL-friendly identifier |
colorrequired | string | Hex color code |
categoryrequired | "active" | "complete" | "closed" | Status category |
positionrequired | number | Display order within category |
showOnRoadmaprequired | boolean | Whether to show on public roadmap |
isDefaultrequired | boolean | Whether this is the default status for new posts |
createdAtrequired | string | ISO 8601 timestamp |
Errors
400Validation error401Unauthorized404Status not foundExample request
curl \
-X PATCH \
"https://feedback.quackback.io/api/v1/statuses/:statusId" \
-H "Authorization: Bearer qb_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "example_name",
"color": "#3b82f6",
"showOnRoadmap": false,
"isDefault": false
}'