DocsAPI ReferenceIssue/bff/issue/comments
getIssueAdmin BFF

/bff/issue/comments

Returns a paginated list of comments for a specific issue, ordered by creation date (oldest first).

IssuegetBffIssueComments

Parameters

3 query

3 total
Query · 3
issueKeystringRequired

Issue key.

pagenumber

Page number.

Default: 1
limitnumber

Items per page.

Default: 100

Request

GET /bff/issue/comments

get
curl -X GET "https://api.bizkithub.com/bff/issue/comments?issueKey=PROJ-123&page=1&limit=100" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

JSON payload

{
  "items": [
    {
      "id": "example_id",
      "authorId": 0,
      "authorName": "example_authorName",
      "authorEmail": "example_authorEmail",
      "message": "example_message"
    }
  ],
  "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