DocsAPI ReferenceIssue/bff/issue/list
getIssueAdmin BFF

/bff/issue/list

Returns a paginated list of issues for the organisation. Supports filtering by project, status category, assignee, reporter, and spam status. Issues are ordered by creation date (newest first).

IssuegetBffIssueList

Parameters

7 query

7 total
Query · 7
projectCodestring

Filter by project key (e.g. "PROJ").

statusCategoryIdnumber

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

assigneeIdnumber

Filter by assignee contact ID.

reporterIdnumber

Filter by reporter contact ID.

isSpamboolean

Filter by spam status.

pagenumber

Page number (1-based).

Default: 1
limitnumber

Items per page.

Default: 50

Request

GET /bff/issue/list

get
curl -X GET "https://api.bizkithub.com/bff/issue/list?projectCode=PROJ&statusCategoryId=1&assigneeId=10&reporterId=5&isSpam=false&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