> ## 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.

# On WhatsApp message delivered

> Start an automation when a WhatsApp message reaches a recipient device.

`onWhatsAppMessageDelivered` starts an automation when WhatsApp reports that a message reached the recipient's device.

```ts automations/track-whatsapp-delivery.automation.ts theme={null}
import { automation } from "automate.ax"
import { onWhatsAppMessageDelivered } from "automate.ax/whatsapp"

export default automation("Track WhatsApp delivery", () => {
  const event = onWhatsAppMessageDelivered()
  event.messageId
})
```

Optional static `account` defaults to the project's WhatsApp binding. The signal has `status: "delivered"` and includes the message and recipient IDs, timestamp, callback data, conversation, pricing, structured errors, and `providerEvent` described by [the broad status trigger](/reference/integrations/whatsapp/triggers/on-message-status-event).

Delivery does not mean the recipient opened the message. Use `onWhatsAppMessageRead` when you need a read receipt.
