Skip to content

Reactions API

Feed/comment reactions plus survey vote and survey voter endpoints.

Authentication

Reaction routes use PortalPolicy and enforce feed or comment access checks inside the relevant controller.

Endpoints

MethodPathEditionOperationWhat it does
POST/feeds/{feed_id}/reactCoreToggle Feed ReactionAdds or removes the current user reaction on a post and returns the updated count — a second route onto the same behaviour as the reactions toggle endpoint.
POST/feeds/{feed_id}/comments/{comment_id}/reactionsCoreToggle Comment ReactionSets or clears the current user like on a comment and returns the new reaction count with the resulting liked state.
GET/feeds/{feed_id}/reactionsCoreList Feed ReactionsReturns the members who liked a post, with their public profiles, for the reaction list popover.
POST/feeds/{feed_id}/reactions/toggleCorePost Add Or Remove Post ReactAdds or removes the current user reaction on a post and returns the updated reaction count.
POST/feeds/{feed_id}/apps/survey-voteCoreCast Survey VoteRecords the current user vote on a survey post and returns the updated survey configuration with their choices flagged.
GET/feeds/{feed_id}/apps/survey-voters/{option_slug}CoreList Survey VotersReturns the members who voted for one survey option, with their public profiles.
GET/comments/{comment_id}/reactionsCoreList Comment ReactionsReturns the members who liked a comment, with their public profiles.

FluentCommunity developer documentation