latestOpenAPI 3.1.02026-08-203914235.9 MB

6a23760847c8

Reactions

List reactions

Returns a paginated list of emoji reactions on a specific message or forum post, sorted by most recent.

Required permissions (one of):

  • chat:read
  • dms:read
  • forum:read
  • livestream:chat:read
  • support_chat:read
get/reactions

Query parameters

afterstring

Returns the elements in the list that come after the specified cursor.

beforestring

Returns the elements in the list that come before the specified cursor.

firstinteger

Returns the first n elements from the list.

Example:42
lastinteger

Returns the last n elements from the list.

Example:42
resource_idstring required

The unique identifier of the message or forum post to list reactions for.

Response

A successful response

Example response

{
  "data": [
    {
      "emoji": ":heart:",
      "id": "reac_xxxxxxxxxxxxxxxxxxxxxx",
      "user": {
        "id": "user_xxxxxxxxxxxxx",
        "name": "John Doe",
        "username": "johndoe42"
      }
    }
  ]
}