BizKitHub
DocsAPI ReferenceIssue/bff/issue/statuses
getIssueAdmin BFF

/bff/issue/statuses

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.

IssuegetBffIssueStatuses

Parameters

No parameters required

This endpoint takes no path, query, header or body parameters.

Response schema

1 status code documented

200Success
itemsobject[]Required
Each array item:
idnumberRequired

Status ID.

labelstringRequired

Status display label (localized to the organisation primary locale).

categoryIdnumberRequired

Status category ID (1=new, 2=progress, 3=waiting, 4=done).

categoryCodestringRequired

Status category code.

isSystembooleanRequired

True for the canonical system status of the category (seeded, read-only, always present in every organisation). False for org-defined refinement rows.

sortOrdernumberRequired

UI ordering hint within the category (ascending; system rows are always rendered first).

itemCountnumberRequired

Total number of returned rows (equals items.length; DataGrid-compatible).

Response example

application/json
{
  "items": [
    {
      "id": 0,
      "label": "example_label",
      "categoryId": 0,
      "categoryCode": "example_categoryCode",
      "isSystem": false,
      "sortOrder": 0
    }
  ],
  "itemCount": 0
}

Request example

GET /bff/issue/statuses

get
curl -X GET "https://api.bizkithub.com/bff/issue/statuses" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key