# `bird whatsapp reaction list-events`

## Usage

```bash
bird whatsapp reaction list-events <message-id> [flags]
```

## Description

Get every change made to one WhatsApp message's reactions, newest first, as a cursor page ({data, next\_cursor, …}): each emoji placed, each one replaced by another, and each one taken back, by the contact and by this workspace alike. Entries carry a status, so a reaction WhatsApp refused is visible here with its error. Use whatsapp\_get and read the message's `reactions` instead for what currently stands.

Returns a paginated JSON envelope; narrow with the filters below and page with --limit and --starting-after.

## Examples

```bash
bird whatsapp reaction list-events <message-id>
bird whatsapp reaction list-events <message-id> | jq -r '.data[].id'
bird whatsapp reaction list-events <message-id> --limit 50 --starting-after <cursor>
```

## Options

#### Pagination

| Name               | Description                                                                                                                                                                                                                                                                                                                                             |
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `--ending-before`  | Cursor from the prev\_cursor or refresh\_cursor field of a previous list response. Returns items immediately before the cursor position in the current sort order. prev\_cursor returns the preceding page. refresh\_cursor anchors at the first row of that response, which on a newest-first sort is how to fetch the items that have appeared since. |
| `--limit <n>`      | Maximum number of items to return per page.                                                                                                                                                                                                                                                                                                             |
| `--starting-after` | Cursor from the next\_cursor field of a previous list response. Returns items immediately after the cursor position in the current sort order.                                                                                                                                                                                                          |

#### Filters

| Name                | Description                                      |
| ------------------- | ------------------------------------------------ |
| `--response-schema` | Print the fields this command returns, then exit |

## Related

| Name                                                                            | Description                                  |
| ------------------------------------------------------------------------------- | -------------------------------------------- |
| [`bird whatsapp reaction remove`](/docs/cli/reference/whatsapp-reaction-remove) | Remove your reaction from a WhatsApp message |
| [`bird whatsapp reaction set`](/docs/cli/reference/whatsapp-reaction-set)       | React to a WhatsApp message                  |

## Related resources

- [Should I use a Bird SDK or call the API directly?](/explained/platform/should-i-use-an-sdk-or-call-the-api-directly) (answer)
- [Build your first integration](/learn/paths/integration) (course)
- [Send your first email](/docs/get-started/send-your-first-email) (docs)

[Get an implementation brief](/learn/workspace?topic=api-basics)
