/bff/issue/comments
Returns a paginated list of comments for a specific issue, ordered by creation date (oldest first).
IssuegetBffIssueComments
Parameters
3 query
Query · 3
issueKeystringRequiredIssue key.
pagenumberPage number.
Default:
1limitnumberItems per page.
Default:
100Request
GET /bff/issue/comments
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.