# `bird email recipients`

## Usage

```bash
bird email recipients <message-id> [flags]
```

## Description

List recipients of a message

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

## Examples

```bash
bird email recipients
bird email recipients | jq -r '.data[].id'
bird email recipients --limit 50 --starting-after <cursor>
```

## Options

#### Pagination

| Name               | Description                                                                                                                                    |
| ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| `--ending-before`  | Cursor from the prev_cursor field of a previous list response. Returns items immediately before the cursor position in the current sort order. |
| `--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 email cancel`](/docs/cli/reference/email-cancel)         | Cancel a scheduled message                  |
| [`bird email content`](/docs/cli/reference/email-content)       | Get stored message content                  |
| [`bird email get`](/docs/cli/reference/email-get)               | Get a message                               |
| [`bird email list`](/docs/cli/reference/email-list)             | List messages                               |
| [`bird email send`](/docs/cli/reference/email-send)             | Send an email message.                      |
| [`bird email send-batch`](/docs/cli/reference/email-send-batch) | Send a batch of email messages in one call. |