How it works
A sales agent declares Creative Protocol support inget_adcp_capabilities:
inline_creative_management (a media buy feature for attaching creatives to packages at buy time), Creative Protocol support, and creative.has_creative_library are distinct declarations. A sales agent can accept inline package creatives without a creative library, can host a library without inline package uploads, or can support both paths.
inline_creative_management allows attaching creatives directly to packages in create_media_buy and update_media_buy — the creative travels with the buy or package update. Creative Protocol support ("creative" in supported_protocols) means the agent implements creative tasks such as build_creative, list_creative_formats, or sync_creatives, depending on its creative capability flags. A reusable creative library is advertised specifically by creative.has_creative_library: true. A sales agent might support inline creative management without implementing a library (the buyer supplies package-scoped creative bodies with the media-buy request), or host a library without inline management (creatives are synced separately via sync_creatives before being assigned to packages).
The buyer calls all tasks — media buy and creative — on the same agent URL. The protocol the task belongs to determines the schema, not the type of agent.
Buyer creative path selection
Buyers choose the creative delivery path from the media-buy inline flag and the Creative Protocol library capability:creative.has_creative_library | media_buy.features.inline_creative_management | Buyer behavior |
|---|---|---|
true | Absent or false | Use Creative Protocol tasks such as sync_creatives, then assign stored creatives with packages[].creative_assignments. |
Absent or false | true | Use packages[].creatives inline on create_media_buy and update_media_buy. Do not call sync_creatives; the seller has not advertised a creative library. |
true | true | Both paths are available. Use inline creatives for single-use package assets or immediate replacement, and sync_creatives plus creative_assignments for reusable library assets. Inline creatives become library creatives because the seller has advertised a creative library. |
Absent or false | Absent or false | The seller has not advertised creative delivery over AdCP. Buyers SHOULD NOT send packages[].creatives or packages[].creative_assignments unless another seller-specific extension explicitly defines that behavior. |
inline_creative_management is true and creative.has_creative_library is absent or false, packages[].creatives is the advertised creative surface. The seller may store those assets only as part of the media buy or package; buyers should not expect list_creatives, sync_creatives, or later creative_assignments reuse to work.
Inline-only approval-state readback is package-scoped. get_media_buys surfaces the package’s currently assigned inline creative approvals through packages[].creative_approvals[] (creative_id, approval_status, and optional rejection_reason), but it does not return the full creative body, placement routing, weights, or prior revisions. Buyers using inline-only sellers should retain the submitted creative manifest or asset payload on their side if they need to inspect or resubmit it later.
Available creative tasks
When a sales agent declares"creative" in supported_protocols, it can implement any Creative Protocol task:
| Task | When to implement |
|---|---|
list_creative_formats | Always — buyers need to discover supported formats |
sync_creatives | When the agent hosts a creative library. Sales agents SHOULD support the assignments field for bulk creative-to-package mapping. |
list_creatives | When buyers need to browse the library |
build_creative | When the agent generates or transforms creatives |
preview_creative | When the agent can render previews |
get_creative_delivery | When the agent can report variant-level delivery data |
Stored creative adapter handoff
When a buyer uploads a creative throughsync_creatives, then later attaches it to a package using creative_assignments in create_media_buy or update_media_buy, the AdCP protocol surface carries only one identifier: creative_id. The buyer chooses it when the creative is created or synced, and later reuses that same value to assign the stored creative without resending the asset bytes.
The id field in the example below is not a second buyer-provided AdCP identifier. It is a seller-side adapter alias copied from creative_id for implementation layers that already use a generic asset id. AdCP does not require any upstream ad server, retail-media platform, or seller system of record to use this object. This shape is implementation guidance for seller SDKs, fixtures, and adapters that choose to transform an AdCP stored creative into an internal asset payload.
When an implementation exposes a URL-backed stored creative to an adapter layer, the adapter-facing object SHOULD preserve both identifier spellings plus the portable metadata needed to traffic the asset.
Adapter-facing internal object (not an AdCP request or response shape):
test=false
creative_id is the canonical AdCP stored creative identifier. id is an adapter-compatibility alias for generic asset contracts that expect an id field. Implementations SHOULD populate both with the same value when transforming a stored creative into an adapter asset; adapters should prefer creative_id when both are present. On the AdCP wire, buyers send only creative_id in creative_assignments[]. The adapter-only id alias is internal compatibility data, not a second buyer-supplied identifier; sellers MUST ignore it if present on input.
The URL-backed path above is the portable adapter handoff. Snippet-backed or inline-content-backed stored creatives, such as HTML snippets, third-party tags, or seller-rendered brief content, require explicit adapter support because the transformation depends on that adapter’s trafficking model. Docs and SDK scaffolds SHOULD NOT imply that every adapter receives fields such as snippet, content, or media_url unless that adapter’s contract actually declares and handles them.
Creative review
Sales agents that receive creatives — whether via inline attachment increate_media_buy or via sync_creatives — may perform creative review before serving. This mirrors real publisher and SSP workflows where creatives are scanned for policy compliance, malware, or brand safety violations.
Creative review status is surfaced at two levels:
- Creative library: For sellers that advertise
creative.has_creative_library: true, thestatusfield on each creative inlist_creativesuses the creative status enum:processing,pending_review,approved,rejected, orarchived. - Package level: The
approval_statusfield on each creative inget_media_buysresponses uses the creative approval status enum:pending_review,approved, orrejected. Rejected creatives include arejection_reasonwith a human-readable explanation.
approved in the library but rejected at the package level if it violates placement-specific policies (e.g., a video creative on an audio-only placement).
Buyers SHOULD poll list_creatives or get_media_buys after syncing or submitting a media buy with new creatives, especially for publishers with strict creative policies. For inline-only sellers, get_media_buys is the approval-state readback surface.
For generative formats where the seller generates at serve time, creative review applies to the brief and brand identity rather than individual creatives. The seller validates that the brief’s constraints and brand assets meet its policies before generation begins.
Platform and community guidelines: Social platforms, UGC sites, and community-driven publishers often enforce content policies beyond standard ad policy (e.g., community standards, promoted content guidelines, category-specific restrictions). These platform-specific policies are surfaced through the same rejection_reason field — the buyer does not need a separate mechanism to handle them. When a creative is rejected for a community guideline violation, the rejection_reason explains what policy was violated so the buyer can fix and re-submit.
Implementation checklist for generative creative
Sales agents offering generative creative should:-
Declare capabilities in
get_adcp_capabilities:supports_generation: truein creative capabilities"creative"insupported_protocolsinline_creative_management: trueif creatives travel with the media buy
-
Define generative formats via
list_creative_formatswhereformat_id.agent_urlpoints to your own agent. Include descriptive format names and asset requirements (at minimum abriefasset). -
Implement
preview_creative— return representative previews for pre-flight review. Supportcontext_descriptioninputs so buyers can simulate different serve-time conditions. For conversational formats, includeinteractive_urlfor sandbox testing. -
Implement
get_creative_delivery— return variant manifests showing what was generated and served. Includegeneration_context(context_type, topic, device_class) and delivery metrics per variant. Plan for variant retention: retain at least 90 days of variant data for post-flight audit. -
Validate briefs at buy time — when a buyer submits a brief in
create_media_buy, validate that the brief’s constraints (brand identity, guardrails, required disclosures) are compatible with your generation capabilities. Reject with a clear error if not. -
Handle creative review for briefs — for generative formats, review applies to the brief and brand identity rather than individual creatives. Communicate review status via
approval_statuson the package inget_media_buys.
Generative formats on sales agents
A seller that generates creatives at serve time — contextual ads, page-matched display, AI-generated native — hosts its own generative format. Theformat_id.agent_url points to the sales agent itself:
list_creative_formats on the sales agent, then provides a brief when creating the media buy:
build_creative call is needed — the brief travels with the media buy.
For regulated categories (financial services, pharma), look for supports_compliance: true in the agent’s creative capabilities. Compliance-aware agents validate required disclosures and regulatory elements during generation — include compliance requirements in the brief so the agent can enforce them.
Previewing generative output
For generative formats,preview_creative serves two purposes:
Before the campaign — pass the brief manifest with context_description inputs to see representative samples of what the agent could generate:
quality: "draft" for fast iteration on creative direction, quality: "production" for stakeholder review. These previews are illustrative — real output depends on live signals at serve time. Preview doesn’t require an active media buy — you can preview before calling create_media_buy.
After the campaign — pass a variant_id from get_creative_delivery to replay exactly what was served:
Delivery reporting
A sales agent implementing both protocols provides two complementary views of delivery data:| Task | Protocol | What it provides |
|---|---|---|
get_media_buy_delivery | Media Buy | WHERE and HOW MUCH: impressions, spend, placement data, optional by_creative breakdown |
get_creative_delivery | Creative | WHAT RAN and HOW: variant manifests, generation context, variant-level metrics |
media_buy_id and creative_id as join keys to correlate data across both responses.
For generative formats, get_creative_delivery is where the buyer sees what was actually generated. Each variant includes a manifest (the actual rendered creative — headline text, image URLs, format) and generation context (the signals that triggered generation, like page topic or device class). get_media_buy_delivery provides the aggregate view with spend, pacing, and dimensional breakdowns.
Example: variant-level reporting on a sales agent
When to use a separate creative agent
A separate creative agent makes sense when:- The creative service is independent of any seller — a creative management platform, ad server, or format conversion service
- Multiple sellers need to serve the same creatives — the buyer manages creatives in one place and distributes them
- The buyer wants centralized creative analytics across sellers
Capability discovery
Buyers checkget_adcp_capabilities to understand what a sales agent supports:
Related
- Creative Specification — Protocol requirements for creative agents
- Implementing Creative Agents — Implementation guide for standalone creative agents
- Generative Creative — Using
build_creativefor AI-powered generation - get_creative_delivery — Variant-level delivery reporting
- get_media_buy_delivery — Media buy delivery reporting
- Media Buy Lifecycle — State machine, sequenced flow, guaranteed deal IO path, creative sync timing