Parameters
1 query
Query parameters
· 1postIdstringOptionalOptional post external_id. When set, only comments under that post are returned. Used by the post-detail "Comments" tab.
aBcDeFgH12345678Returns a paginated list of comments for the authenticated organisation. Without postId, returns comments across all posts. With postId, scopes to one post. Comments are ordered by inserted date (newest first). Supports standard datagrid pagination via ?page= and ?limit= query params.
1 query
postIdstringOptionalOptional post external_id. When set, only comments under that post are returned. Used by the post-detail "Comments" tab.
aBcDeFgH123456781 status code documented
itemsobject[]RequiredidstringRequiredComment ID.
postIdstringRequiredExternal ID of the post this comment belongs to.
postTitlestringRequiredTitle of the post.
authorIdstringRequiredExternal ID of the comment author (customer/contact).
authorNamestringRequiredDisplay name of the author.
authorEmailstringRequiredEmail of the author.
contentstringRequiredComment text content.
insertedDatestringRequiredISO timestamp when the comment was created.
isDeletedbooleanRequiredWhether the comment has been soft-deleted.
itemCountnumberRequiredTotal number of comments matching the query (before pagination).
{
"items": [
{
"id": "example_id",
"postId": "example_postId",
"postTitle": "example_postTitle",
"authorId": "example_authorId",
"authorName": "example_authorName",
"authorEmail": "example_authorEmail",
"content": "example_content",
"insertedDate": "example_insertedDate",
"isDeleted": false
}
],
"itemCount": 0
}GET /bff/post/comment-list
curl -X GET "https://api.bizkithub.com/bff/post/comment-list?postId=aBcDeFgH12345678" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.