Skip to main content

Migrating creatives

This page records the 3.0 migration. For new AdCP 3.2 integrations, use canonical format_kind / format_option_ref, discover creative operations through get_adcp_capabilities.creative.supported_formats[], and treat list_creative_formats plus compound format_id as deprecated 3.x compatibility surfaces.
AdCP 3.0 makes three breaking changes to creative handling: the FormatCategory enum and format type field are removed, weighted creative assignments replace simple ID arrays, and a unified assets array replaces assets_required for format discovery.

Format category removal

What changed

Why

The FormatCategory enum (video, display, audio, native, social, custom) was a coarse classifier that didn’t map well to multi-asset formats. A “video” format might also require display companion banners and text overlays. The enum forced implementors to pick one category for inherently multi-modal formats, which led to inconsistent filtering and discovery gaps.

Migration

Replace format_types filters with asset_types (what the format needs) or format_ids (exact match): v2:
v3 — filter by asset type:
v3 — filter by exact format ID:
asset_types returns any format that includes at least one asset of that type — so a video format with companion banners appears in both ["video"] and ["image"] results.

Creative assignments

What changed

Simple migration (equal weights)

v2:
v3 — omit weight for equal distribution:
In context of a create_media_buy package:
When weight is omitted on all assignments, impressions are distributed equally.

Weighted assignments

Control what percentage of impressions each creative receives:
Weights are relative — they don’t need to sum to 100, but doing so makes intent clear.

Rotation modes and groups

rotation_mode is a package policy carried on each assignment row. All assignments in one package MUST resolve to the same mode; omission resolves to weighted, preserving the pre-3.2 behavior above. A seller MUST reject conflicting modes with VALIDATION_ERROR before creating or updating the package rather than picking the first row. group_id identifies a pool only within its containing package; the same value in another package is unrelated. Assignments without group_id belong to the package’s default group. In sequential mode, positions start at 1 and MUST be unique within each effective group, so separate groups may reuse the same positions. Conventional weighted pool (the legacy shape remains valid):
Sequential podcast storytelling:
weight is valid only for the effective weighted mode. sequence_position is valid only for explicit sequential assignments. Package validators additionally enforce effective-mode consistency and position uniqueness because JSON Schema draft-07 cannot compare values across assignment rows.

Placement targeting

Assign specific creatives to specific placements within a product:
When 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:
v3 — lists ALL assets with 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 the assets array has an item_type discriminator: Individual assets (item_type: "individual"):
Repeatable groups (item_type: "repeatable_group") for carousels and multi-item formats:

Format cards (replacing preview_image)

v2’s preview_image URL is replaced by format_card, which uses the creative rendering system:

Migration steps

Format category

1

Remove format_types filters

Remove format_types from list_creative_formats and get_products requests.
2

Replace with asset_types

Use asset_types to filter formats by what assets they accept (e.g., ["video"], ["image"]).
3

Or use format_ids

Use format_ids for exact format matching when you know the specific formats you need.
4

Stop reading type field

Remove any code that reads the type field from format objects — it no longer exists in v3.

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