> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# List broadcast recipients

> List Resend broadcast recipients by delivery event.

`resend.listBroadcastRecipients` lists Resend broadcast recipients by delivery event.

```ts automations/resend-listBroadcastRecipients.automation.ts theme={null}
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"

export default automation("List broadcast recipients", () => {
  resend.listBroadcastRecipients({
    broadcastId: "broadcast_123",
    type: "bounced",
    bounceType: "permanent",
    limit: 50,
  })
})
```

`type` is one of `sent`, `delivered`, `opened`, `clicked`, `bounced`, `complained`, `unsubscribed`, or `suppressed`. `bounceType` is valid only for bounced recipients. Returned bounce types are normalized to lowercase `permanent`, `transient`, or `undetermined`; the field is `null` or omitted when Resend does not provide it. Results may be cached by Resend for 15 minutes. Optional second argument `{ account }` selects the Resend account binding.
