Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns every issue status visible to the organisation: the four canonical system rows (seeded, read-only, always present) plus any org-defined refinement rows. Ordering is category → system-first → sort_order → label. Labels are localized to the organisation`s primary locale.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredidnumberRequiredStatus ID.
labelstringRequiredStatus display label (localized to the organisation primary locale).
categoryIdnumberRequiredStatus category ID (1=new, 2=progress, 3=waiting, 4=done).
categoryCodestringRequiredStatus category code.
isSystembooleanRequiredTrue for the canonical system status of the category (seeded, read-only, always present in every organisation). False for org-defined refinement rows.
sortOrdernumberRequiredUI ordering hint within the category (ascending; system rows are always rendered first).
itemCountnumberRequiredTotal number of returned rows (equals items.length; DataGrid-compatible).
{
"items": [
{
"id": 0,
"label": "example_label",
"categoryId": 0,
"categoryCode": "example_categoryCode",
"isSystem": false,
"sortOrder": 0
}
],
"itemCount": 0
}GET /bff/issue/statuses
curl -X GET "https://api.bizkithub.com/bff/issue/statuses" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.