Skip to main content
GET
/
:projectId
/
api
/
v7
/
comments
/
:commentId
/
reactions
/
me
Get User Reaction
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/comments/:commentId/reactions/me
Returns the authenticated user’s current reaction on the specified comment, or null if they have not reacted. Authentication required.

Path Parameters

commentId
string
required
The UUID of the comment.

Response

{ "reactionType": "like" }
or, if the user has no reaction:
{ "reactionType": null }