GET
/statusesList statuses
Returns all statuses in the workspace, ordered by category and position
Response
List of statuses
Returns an array of objects:
| 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 |
meta
| Field | Type | Description |
|---|---|---|
paginationrequired | object |
Errors
401UnauthorizedExample request
curl \
"https://feedback.quackback.io/api/v1/statuses" \
-H "Authorization: Bearer qb_your_api_key_here"