v2
latestOpenAPI 3.1.02026-08-075421692.0 MBSend conversion events
Relay one or more conversion events to the target ad platform's native Conversions API. Platform is inferred from the provided accountId. Requires the Ads add-on.
Supported platforms:
- Meta (metaads) via Graph API
- Google Ads (googleads) via Data Manager API ingestEvents
- LinkedIn (linkedinads) via /rest/conversionEvents
- TikTok (tiktokads) via the Offline Events API /offline/batch/ — OFFLINE conversions only
- OpenAI Ads (openaiads) via its Conversions API (a separate host, bzr.openai.com)
destinationId semantics differ per platform:
- Meta: pixel (dataset) ID, e.g. 123456789012345
- Google: conversion action resource name, e.g. customers/1234567890/conversionActions/987654321
- LinkedIn: conversion rule ID or URN, e.g. 104012 or urn:lla:llaPartnerConversion:104012
- TikTok: Offline Event Set ID, e.g. 7057103914977558530
- OpenAI Ads: pixel wire id (numeric pixel_id, distinct from the internal pixel id), as returned by GET /v1/accounts/{accountId}/conversion-destinations
TikTok notes: this path sends OFFLINE conversions (in-store / CRM / call-center), not web-pixel events. Each event must carry an email or phone (TikTok requires at least one). The connected TikTok ads account must have granted the Offline Events permission; older grants must reconnect.
OpenAI Ads notes: requires a tracking tag (pixel) to already exist on the account — returns 422 with code TRACKING_TAG_REQUIRED if POST /v1/accounts/{accountId}/tracking-tags hasn't been called yet.
Callers can list valid destinations via GET /v1/accounts/{accountId}/conversion-destinations.
All PII (email, phone, names, external IDs) is hashed with SHA-256 server-side per each platform's normalization spec, including Google's Gmail-specific dot/plus-suffix stripping. Send plaintext. LinkedIn externalIds are passed through as plaintext per LinkedIn's spec; only emails and phones are hashed.
For LinkedIn, the connected account must have been authorized after the Conversions API rollout (i.e. the OAuth grant must include rw_conversions). Older accounts must reconnect.
Batching is handled automatically. Meta caps at 1000 events per request and rejects the entire batch if any event is malformed. Google caps at 2000. LinkedIn caps at 5000 and is also all-or-nothing per chunk. OpenAI Ads caps at 1000 per request; larger submissions are split into 1000-event chunks, each all-or-nothing (a malformed event fails every event in that chunk, not the whole request).
Dedup: pass a stable eventId on every event. Meta and LinkedIn use it to dedupe against browser-side pixel/Insight Tag events; Google maps it to transactionId.
Per-platform eventName semantics:
- Meta: free-form. Standard names (Purchase, Lead, ...) match Meta's built-in events; custom strings are accepted.
- Google: ignored. The conversion action's category determines the event type. Send the standard name closest to your action for documentation, but the platform will not branch on it.
- LinkedIn: ignored. The conversion rule's type (LEAD, PURCHASE, etc.) is locked to the destination at rule-creation time. Send the standard name for documentation; LinkedIn does not branch on it.
- OpenAI Ads: a fixed subset of standard names (Purchase, Lead, AddToCart, ViewContent, InitiateCheckout, CompleteRegistration, Subscribe, StartTrial, Schedule) maps 1:1 onto OpenAI's own event-type enum; any other standard name or custom string is sent as type: custom with the name preserved.
Request body
Example request
{
"events": [
{
"eventName": "Purchase",
"eventTime": 1744732800,
"eventId": "order_abc_123",
"value": 99.5,
"currency": "USD"
}
]
}Response
Events processed. Inspect eventsFailed and failures[] to detect partial failure. For Meta, a batch is all-or-nothing (either every event in a chunk succeeds, or every event in the chunk is listed in failures). For Google, the API returns success/failure at the request level only. For OpenAI Ads, each 1000-event chunk is all-or-nothing, same as Meta.