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 reaction_group resources:
data: [
{
"type": "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.