POST
/statusesCreate a status
Create a new post status
Request body
| Field | Type | Description |
|---|---|---|
namerequired | string | Status name |
slugrequired | string | URL-friendly slug |
colorrequired | string | Status color |
categoryrequired | "active" | "complete" | "closed" | Status category |
position | integer | Display order within category |
showOnRoadmap | boolean | Show on public roadmap |
isDefault | boolean | Set as default for new posts |
Response
Status created
| 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 error401UnauthorizedExample request
curl \
-X POST \
"https://feedback.quackback.io/api/v1/statuses" \
-H "Authorization: Bearer qb_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "In Progress",
"slug": "in_progress",
"color": "#f97316",
"category": "example_category",
"position": 0,
"showOnRoadmap": false,
"isDefault": false
}'