List destinations for the Conversions API
Returns the list of pixels (Meta), conversion actions (Google), or
conversion rules (LinkedIn) accessible to the connected ads account.
Use the returned id as destinationId when posting to
POST /v1/ads/conversions.
For Google and LinkedIn, each destination's type reflects the
conversion type (PURCHASE, LEAD, SIGN_UP, etc.) — the event type is
locked to the destination. For Meta, type is absent: pixels accept
any event name per request.
For LinkedIn, destinations are returned across every sponsored ad
account the connected token can access; the adAccountId field on
each destination identifies the parent ad account and is required for
subsequent CRUD calls (update, delete, associations, metrics).
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
SocialAccount ID (metaads, googleads, or linkedinads).
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.ads.listConversionDestinations({ path: { accountId: 'account_abc123', },});console.log(data);{
"platform": "metaads",
"destinations": [
{
"id": "string",
"name": "string",
"type": "string",
"status": "active",
"adAccountId": "string"
}
]
}{
"error": "Unauthorized"
}List campaigns associated with a conversion destination GET
LinkedIn-only today. Returns the campaigns currently associated with this conversion rule. Note that auto-association on rule creation runs once at create time; campaigns created after the rule still need explicit association.
Search targeting interests GET
Search for interest-based targeting options available on the platform.