GET
/statuses/{statusId}Get a status
Get a single status by ID
Parameters
| Name | In | Type | Description |
|---|---|---|---|
statusIdrequired | path | string | Status ID |
Response
Status details
| 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
401Unauthorized404Status not foundExample request
curl \
"https://feedback.quackback.io/api/v1/statuses/:statusId" \
-H "Authorization: Bearer qb_your_api_key_here"