curl --request GET \
--url https://api.replyke.com/api/v6/:projectId/api/v7/conversations/:conversationId/messages/:messageId/reactions{
"data": [
{
"user": {},
"emoji": "<string>",
"createdAt": "<string>"
}
],
"pagination": {
"page": 123,
"limit": 123,
"total": 123,
"hasMore": true
}
}List users who reacted to a message with a specific emoji
curl --request GET \
--url https://api.replyke.com/api/v6/:projectId/api/v7/conversations/:conversationId/messages/:messageId/reactions{
"data": [
{
"user": {},
"emoji": "<string>",
"createdAt": "<string>"
}
],
"pagination": {
"page": 123,
"limit": 123,
"total": 123,
"hasMore": true
}
}Forbidden — 403
{ "error": "You are not a member of this conversation.", "code": "chat/not-a-member" }
Not Found — 404
{ "error": "Message not found.", "code": "chat/message-not-found" }