POST /api/v2/buyer/advertisers/{advertiserId}/catalogs/{catalogId}/activation-plan/execute
Runs a catalog’s activation plan, creating durable downstream jobs: campaign-activation requests, creative-generation requests, and seller-syndication steps. This is the step that turns the previewed fan-out into real work.
The plan is resolved in this order: the planId you pass, else the latest saved plan, else a plan built on the fly from the catalog’s active transform. Pass dryRun: true to build and return the execution without persisting any jobs.
Request
curl
Parameters
| Field | Type | Required | Notes |
|---|---|---|---|
advertiserId | string (path) | Yes | Unique identifier for the advertiser |
catalogId | string (path) | Yes | Buyer-assigned catalog_id or the platform catalogId from list catalogs |
planId | string | No | A saved activation plan id. If omitted, the latest saved plan is used, or one is created from the active transform |
adcpAgentIds | array | No | Seller agents to evaluate/execute. If omitted, the catalog’s enabled syndication targets are used. Default [] |
dryRun | boolean | No | Build and return the execution without creating durable jobs. Default false |
Response
Theplan object is the same activation plan shape returned by preview.
plan and the execution it produced. The overall execution.status is pending, completed, or failed, and its trigger is manual, feed_refresh, or scheduled. Each steps[] entry is one downstream job (campaign_activation_request, sync_catalogs, sync_creatives, creative_generation_request, third_party_creative_agent, or unsupported) with its own status of pending, completed, failed, or skipped. Creative work surfaces separately under creativeGenerationRequests. On a dryRun, the execution is built and returned but no jobs are persisted.
Errors
400 VALIDATION_ERROR— no plan is available and none can be built (“No activation plan is available. Save a catalog transform and sync or refresh the catalog first.”).404 NOT_FOUND—advertiserIdorcatalogIddoes not exist or is not visible to the authenticated account.
Related
Preview activation
Dry-run the fan-out first
Save catalog transform
Define the fan-out rules
Refresh catalog
Pull the latest feed and re-activate
List catalogs
See synced catalogs