Export Contacts
Bulk, incremental export of contacts, ordered by updatedAt ascending. Each contact’s fields are flattened under fields, keyed by their label.
Results are paginated with an opaque cursor returned as pagination.nextCursor. Pass it back as cursor to fetch the next page; a null cursor means there are no more results. Persist the last non-null cursor between syncs to resume. Passing the stored cursor on a later call yields contacts created or updated since.
Request access. This endpoint is not enabled by default, contact the Conversion team to request access. Calls from accounts without it return
403 export_not_enabled.
Authorizations
Your Conversion API key. Found in Settings > Integrations in the dashboard. Format: sk_live_<key_id>_<secret>.
Body
The opaque pagination cursor returned as pagination.nextCursor by a previous call. Omit (or pass an empty string) on the first call to start from the beginning. An invalid or malformed cursor returns an invalid_cursor error.
"eyJjcmVhdGVkQXQiOiIyMDI2LTAxLTE1VDEwOjMwOjAwWiJ9"
The maximum number of contacts to return per page. Defaults to 1000. Values are clamped to the range [1, 5000] rather than rejected; values above 5000 return 5000 results.
1 <= x <= 5000