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

3 total
Query · 3
statusCategoryIdnumber

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

pagenumber

Page number (1-based).

Default: 1
limitnumber

Items per page.

Default: 50

Request

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"

Response

JSON payload

{
  "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
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key