BizKitHub
DocsAPI ReferenceIssue/bff/issue/support-list
getIssueAdmin BFF

/bff/issue/support-list

Returns 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.

IssuegetBffIssueSupport-list

Parameters

3 query

Query parameters

· 3
statusCategoryIdnumberOptional

Filter by status category (1=new, 2=progress, 3=waiting, 4=done).

Example1
pagenumberOptional

Page number (1-based).

Default: 1
Example1
limitnumberOptional

Items per page.

Default: 50
Example50

Response schema

1 status code documented

200Success
itemsobject[]Required
Each array item:
idstringRequired

Issue key (e.g. "BIZKIT-42").

internalIdnumberRequired

Internal numeric ID.

issueKeystringRequired

Issue key.

subjectstringRequired

Ticket subject.

prioritynumberRequired

Priority (1-5).

priorityLabelstringRequired

Human-readable priority label.

statusobjectRequired
idnumberRequired

Status ID.

labelstringRequired

Status label.

categoryIdnumberRequired

Status category ID.

categoryCodestringRequired

Status category code.

reporterobject | nullRequired
One of 2:
Variant 1
idnumberRequired

Reporter contact ID.

namestringRequired

Reporter full name.

emailstring | nullRequired
One of 2:
Variant 1
string

Reporter e-mail. null for phone-only contacts and anonymised contacts.

Variant 2
null
Variant 2
null
insertedDateDate | string | string | numberRequired

When the ticket was created.

One of 4:
Variant 1
Date

When the ticket was created.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
updatedDateDate | string | string | number | nullRequired
One of 2:
Variant 1
Date | string | string | number

Last update timestamp.

One of 4:
Variant 1
Date

Last update timestamp.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
Variant 2
null
itemCountnumberRequired

Total matching tickets.

Response example

application/json
{
  "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
}

Request example

GET /bff/issue/support-list

get
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"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key