List recent WhatsApp conversion events
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.
API key authentication - use your Zernio API key as a Bearer token
In: header
Query Parameters
WhatsApp social account ID
Max events to return (1-200, default 50).
501 <= value <= 200Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.whatsapp.listWhatsAppConversions({ query: { accountId: 'account_abc123', },});console.log(data);{
"events": [
{
"timestamp": "2019-08-24T14:15:22Z",
"eventName": "string",
"conversationId": "string",
"eventsReceived": 0,
"eventsFailed": 0,
"traceId": "string",
"durationMs": 0
}
]
}{
"error": "Unauthorized"
}List submitted leads (cross-form CRM view) GET
Returns persisted Meta Lead Gen leads for your team, newest-first, with keyset pagination on `cursor`. Leads are ingested in real time from the `leadgen` webhook. Requires the Ads add-on.
Search targeting interests (deprecated) GET
Deprecated alias for `GET /v1/ads/targeting/search?dimension=interest`. Kept for backward compatibility, it returns the legacy `{ interests: [...] }` shape rather than the normalized `{ results: [...] }`. New integrations should use `GET /v1/ads/targeting/search` with `dimension=interest`.