Get Comment Reactions
comments
Get Comment Reactions
Return emoji reaction groups for a comment.
Dedicated endpoint for per-comment reaction refresh โ useful when the
client needs an up-to-date reaction bar without re-fetching the full
comment payload.
ACL gate: the contact must be able to view comments on the comment's
target (via TargetRegistry.can_user_view_comments). This is the same
gate used by get() and list_for_target(). Mirrors the discussion
equivalent (GET /api/discussions/{id}/reactions ยง11 #2).
Returns a JSON:API collection of comment_reaction_groups resources:
data: [
{
"type": "comment_reaction_groups",
"id": "<comment_id>:<emoji>",
"attributes": {
"emoji": "๐",
"count": 3,
"reacted_by_me": true,
"my_reaction_id": "rxn-uuid-..."
}
},
...
]
Returns 404 when the comment does not exist or is soft-deleted.
Returns 403 when the contact cannot view comments on the target.
Returns 401 when unauthenticated.
GET
Get Comment Reactions
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Response
Successful Response
JSON:API list envelope for comment reaction groups.
Returned by GET /api/comments/{comment_id}/reactions.
Shape: { "data": [ , ... ] }