/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
Query · 7
projectCodestringFilter by project key (e.g. "PROJ").
statusCategoryIdnumberFilter by status category (1=new, 2=progress, 3=waiting, 4=done).
assigneeIdnumberFilter by assignee contact ID.
reporterIdnumberFilter by reporter contact ID.
isSpambooleanFilter by spam status.
pagenumberPage number (1-based).
Default:
1limitnumberItems per page.
Default:
50Request
GET /bff/issue/list
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.