Skip to main content
GET
/
api
/
v1
/
comments
/
{comment_id}
/
reactions
Get Comment Reactions
curl --request GET \
  --url https://api.member.dev/api/v1/comments/{comment_id}/reactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "attributes": {
        "count": 123,
        "emoji": "<string>",
        "my_reaction_id": "<string>",
        "reacted_by_me": true
      },
      "id": "<string>",
      "type": "comment_reaction_groups"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

comment_id
string
required

Query Parameters

hub_id
string
required

Response

Successful Response

JSON:API list envelope for comment reaction groups.

Returned by GET /api/comments/{comment_id}/reactions.

Shape: { "data": [ , ... ] }

data
ReactionGroupResource ยท object[]
required