Parameters
3 query
Query parameters
· 3statusCategoryIdnumberOptionalFilter by status category (1=new, 2=progress, 3=waiting, 4=done).
1pagenumberOptionalPage number (1-based).
11limitnumberOptionalItems per page.
5050Returns support tickets that the authenticated organisation has filed against BizKitHub. These tickets live inside BizKitHub`s SUPPORT project but are visible to the originating organisation thanks to the originatingOrganisationId column on the issue. For BizKitHub itself this endpoint returns an empty list — internal staff should use /list instead.
3 query
statusCategoryIdnumberOptionalFilter by status category (1=new, 2=progress, 3=waiting, 4=done).
1pagenumberOptionalPage number (1-based).
11limitnumberOptionalItems per page.
50501 status code documented
itemsobject[]RequiredidstringRequiredIssue key (e.g. "BIZKIT-42").
internalIdnumberRequiredInternal numeric ID.
issueKeystringRequiredIssue key.
subjectstringRequiredTicket subject.
prioritynumberRequiredPriority (1-5).
priorityLabelstringRequiredHuman-readable priority label.
statusobjectRequiredidnumberRequiredStatus ID.
labelstringRequiredStatus label.
categoryIdnumberRequiredStatus category ID.
categoryCodestringRequiredStatus category code.
reporterobject | nullRequiredidnumberRequiredReporter contact ID.
namestringRequiredReporter full name.
emailstring | nullRequiredReporter e-mail. null for phone-only contacts and anonymised contacts.
insertedDateDate | string | string | numberRequiredWhen the ticket was created.
When the ticket was created.
updatedDateDate | string | string | number | nullRequiredLast update timestamp.
Last update timestamp.
itemCountnumberRequiredTotal matching tickets.
{
"items": [
{
"id": "example_id",
"internalId": 0,
"issueKey": "example_issueKey",
"subject": "example_subject",
"priority": 0,
"priorityLabel": "example_priorityLabel",
"status": {
"id": 0,
"label": "example_label",
"categoryId": 0,
"categoryCode": "example_categoryCode"
}
}
],
"itemCount": 0
}GET /bff/issue/support-list
curl -X GET "https://api.bizkithub.com/bff/issue/support-list?statusCategoryId=1&page=1&limit=50" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.