List Comment Replies
comments
List Comment Replies
List direct replies for a parent comment (keyset-paginated).
Required query params: hub_id.
Optional: page[after]=<cursor>, page[size]=<int 1-100>.
ACL gate: the contact must be able to view comments on the comment's
target (via TargetRegistry.can_user_view_comments). Mirrors
list_reactions_for_comment's gate so this endpoint never exposes
replies on a thread the viewer cannot see.
Returns a JSON:API list response mirroring GET /api/comments.
Returns 404 when the parent comment does not exist or is soft-deleted.
Returns 403 when the contact cannot view comments on the target.
Returns 401 when unauthenticated.
GET
List Comment Replies
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Successful Response
JSON:API list envelope for comments.
Shape: { "data": [ , ... ], "meta": { "next_cursor": "...", "has_more": true }, "links": { "self": "..." } }