Migrating creatives
AdCP 3.0 makes two breaking changes to creative handling: weighted creative assignments replace simple ID arrays, and a unifiedassets array replaces assets_required for format discovery.
Creative assignments
What changed
Simple migration (equal weights)
v2:weight for equal distribution:
create_media_buy package:
weight is omitted on all assignments, impressions are distributed equally.
Weighted assignments
Control what percentage of impressions each creative receives:Placement targeting
Assign specific creatives to specific placements within a product:placement_ids is omitted, the creative runs on all placements in the package. placement_ids references placement_id values from the product’s placements array.
sync_creatives does not support placement_ids. Use create_media_buy or update_media_buy for placement-level targeting.Creative assignment schema
Each assignment object:Asset discovery
What changed
Format assets
v2 — only listed required asset IDs:required boolean:
What the assets array provides
- Full discovery — see ALL assets a format supports, not just required ones
- Type information — each asset declares its
asset_type(image, video, text, url, etc.) - Requirements — inline constraints (dimensions, length, MIME types)
- Optional assets — trackers, companion banners, and other optional elements are now visible
- Repeatable groups — carousel and multi-item formats use
item_type: "repeatable_group"
Asset item types
Each entry in theassets array has an item_type discriminator:
Individual assets (item_type: "individual"):
item_type: "repeatable_group") for carousels and multi-item formats:
Format cards (replacing preview_image)
v2’spreview_image URL is replaced by format_card, which uses the creative rendering system:
Migration steps
Creative assignments
1
Replace creative_ids
Replace
creative_ids arrays with creative_assignments object arrays.2
Set creative_id
Set
creative_id on each assignment object.3
Add weights
Add weights if you need non-equal distribution, otherwise omit
weight.4
Add placement_ids
Add
placement_ids if you need placement-level targeting.5
Update sync_creatives calls
These use
creative_assignments too, but without placement_ids.Asset discovery
1
Replace assets_required
Replace
assets_required parsing with assets array iteration.2
Check required boolean
Check
required boolean on each asset instead of assuming all listed assets are required.3
Use asset_type
Use
asset_type to understand what kind of file each asset expects.4
Handle item_type
Check for
"individual" vs "repeatable_group".5
Replace preview_image
Replace
preview_image reads with format_card rendering.6
Validate
Creative manifests must use exact
asset_id values as keys.Creative
Full creative documentation: formats, asset types, manifests, and creative agents.
Related: Channels | Pricing | Geo targeting | Catalogs | Attribution | AdCP 3.0 overview