Get Discussion Reactions
community-discussions
Get Discussion Reactions
Return emoji reaction groups for a discussion.
Dedicated endpoint for per-discussion reaction refresh โ useful when the
client needs an up-to-date reaction bar without re-fetching the full
discussion payload.
ACL: the contact must be able to view the discussion (ยง11 #2 โ can_view gate).
Returns a JSON:API collection of discussion_reaction_groups resources:
data: [
{
"type": "discussion_reaction_groups",
"id": "<discussion_id>:<emoji>",
"attributes": {
"emoji": "๐",
"count": 3,
"reacted_by_me": true,
"my_reaction_id": "rxn-uuid-..."
}
},
...
]
Returns 404 when the discussion does not exist or is deleted.
Returns 403 when the contact cannot view the discussion.
GET
Get Discussion Reactions
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Response
Successful Response