DocsAPI ReferencePost/bff/post/comment-list
getPostAdmin BFF

/bff/post/comment-list

Returns 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.

PostgetBffPostComment-list

Parameters

1 query

1 total
Query · 1
postIdstring

Optional post external_id. When set, only comments under that post are returned. Used by the post-detail "Comments" tab.

Request

GET /bff/post/comment-list

get
curl -X GET "https://api.bizkithub.com/bff/post/comment-list?postId=aBcDeFgH12345678" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

Paginated list of comments.

{
  "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
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key