# MessageReaction

## Example MessageReaction Object

```
{
  "id": 1,
  "emoji": "👍"
}
```

* `id` (int64): Reaction ID
* `emoji` (string): Emoji used in the reaction.
* `user_id` (int64): User ID.  Provide a value of `0` to operate the current session's user.

---

## List Message Reactions

```
await MessageReaction.list({
  'user_id': 1,
  'message_id': 1,
})
```


### Parameters

* `user_id` (int64): User ID.  Provide a value of `0` to operate the current session's user.
* `cursor` (string): Used for pagination.  When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`.  Send one of those cursor value here to resume an existing list from the next available record.  Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
* `per_page` (int64): Number of records to show per page.  (Max: 10,000, 1,000 or less is recommended).
* `message_id` (int64): Required - Message to return reactions for.

---

## Show Message Reaction

```
await MessageReaction.find(id)
```


### Parameters

* `id` (int64): Required - Message Reaction ID.

---

## Create Message Reaction

```
await MessageReaction.create({
  'user_id': 1,
  'emoji': "emoji",
})
```


### Parameters

* `user_id` (int64): User ID.  Provide a value of `0` to operate the current session's user.
* `emoji` (string): Required - Emoji to react with.

---

## Delete Message Reaction

```
const message_reaction = await MessageReaction.find(id)

await message_reaction.delete()
```

### Parameters

* `id` (int64): Required - Message Reaction ID.

