List custom conversions
The ad account's Meta custom conversions, including archived ones (isArchived).
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
Meta ads SocialAccount id.
Query Parameters
Meta ad account id (act_).
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.adaccounts.listCustomConversions({ path: { accountId: 'account_abc123', }, query: { adAccountId: 'adaccount_abc123', },});console.log(data);{
"adAccountId": "string",
"data": [
{
"id": "string",
"name": "string",
"rule": {},
"customEventType": "string",
"pixelId": "string",
"isArchived": true
}
]
}{
"error": "Unauthorized"
}List TikTok Business Centers GET
Returns the TikTok Business Centers (BCs) the connected `tiktokads` account can read. Each BC reports its advertiser count so callers can build agency-style pickers without re-walking `/v1/ads/accounts` per BC. TikTok-only. Solo advertisers (non-agency tokens) return an empty array.
High demand periods / budget schedules GET
Scheduled budget increases (Meta's budget-scheduling API). The Graph edge lives on the campaign and ad-set nodes only, so exactly one of `campaignId` / `adSetId` (platform ids) is required. Rows returned verbatim (budget_value, budget_value_type, time window, recurrence).