---
title: "List conversion events"
method: GET
path: "/v1/whatsapp/conversions"
tags: ["WhatsApp"]
---

# List conversion events

`GET /v1/whatsapp/conversions`

Returns the most recent conversion events sent through
`POST /v1/whatsapp/conversions` for the given WhatsApp account.
Sourced from delivery logs (Axiom `late` dataset), so the visible
window is bounded by log retention (about 30 days). Useful for
rendering a "recent activity" panel on the conversions setup tab
without standing up a parallel persistence layer.

Per-event payload mirrors the structured log we write on every
successful send: `eventName`, `conversationId`, `eventsReceived`,
`eventsFailed`, `traceId`, `durationMs`, and the wall-clock
`timestamp`.

## Query parameters

- `accountId` string, required
- `limit` integer

## Response `200`

Recent conversion events

- object
  - `events` object[]
    - `timestamp` string, date-time — When the event was sent to Meta.
    - `eventName` string — One of LeadSubmitted, Purchase, AddToCart, InitiateCheckout, ViewContent.
    - `conversationId` string, nullable
    - `eventsReceived` integer, nullable — Number of events Meta accepted on this send (usually 1).
    - `eventsFailed` integer, nullable — Number of events Meta rejected (usually 0).
    - `traceId` string, nullable — Meta fbtrace_id for cross-referencing in Events Manager.
    - `durationMs` integer, nullable

## Other responses

- `401` — Unauthorized
- `404` — WhatsApp account not found

---

[API](https://skmtc.net/zernio/apis/zernio-api.md) · [All operations](https://skmtc.net/zernio/apis/zernio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zernio/zernio-api/versions/f81ca70ea6b9/schema)
