Scope3 Creatives API

Build, manage, and sync campaign creatives via AdCP Creative Protocol

Operations 39

GET /advertisers/{advertiserId}/creative/model-credentials List generation-provider keys for an advertiser #
POST /advertisers/{advertiserId}/creative/model-credentials Connect a generation-provider key for an advertiser #
PATCH /creative/model-credentials/{id} Update or rotate a generation-provider key #
GET /creative-dashboard-url Get creative dashboard URL #
POST /campaigns/{campaignId}/creatives/create Create creative manifest #
GET /campaigns/{campaignId}/creatives/templates List creative templates #
GET /campaigns/{campaignId}/creativeManifest List creative manifests #
GET /campaigns/{campaignId}/creatives List creatives #
POST /campaigns/{campaignId}/creatives/bulk-update Bulk update creatives #
POST /advertisers/{advertiserId}/creatives/create Create advertiser creative master #
GET /advertisers/{advertiserId}/creatives List advertiser creative library #
POST /advertisers/{advertiserId}/creatives/save-to-library Promote advertiser creatives into the library shelf #
POST /creatives/stash Stash brought creatives before an advertiser is chosen #
POST /advertisers/{advertiserId}/creative-intent Open the creative-intent picker for an advertiser #
GET /campaigns/{campaignId}/creative-confirmation Get creative-confirmation card for a campaign #
POST /campaigns/{campaignId}/creative-confirmation Attach brought creatives to a campaign #
POST /campaigns/{campaignId}/creatives/{creativeId}/placement Reassign a brought creative to a different placement #
POST /campaigns/{campaignId}/creatives/placements Batch-reassign brought creatives to placements #
POST /advertisers/{advertiserId}/creatives/{creativeId}/campaigns Assign creative to campaign #
DELETE /advertisers/{advertiserId}/creatives/{creativeId}/campaigns/{campaignId} Unassign creative from campaign #
DELETE /advertisers/{advertiserId}/creatives/{creativeId} Archive creative globally #
GET /campaigns/{campaignId}/creative-collections List creative collections #
POST /campaigns/{campaignId}/creative-collections Create creative collection #
GET /campaigns/{campaignId}/creative-collections/{collectionId} Get creative collection #
PUT /campaigns/{campaignId}/creative-collections/{collectionId} Update creative collection #
POST /campaigns/{campaignId}/creative-collections/{collectionId}/members Add creative collection members #
DELETE /campaigns/{campaignId}/creative-collections/{collectionId}/members Remove creative collection members #
POST /campaigns/{campaignId}/creative-collections/{collectionId}/attach Attach creative collection to campaign #
GET /advertisers/{advertiserId}/creative-collections List advertiser creative collections #
POST /advertisers/{advertiserId}/creative-collections Create advertiser creative collection #
GET /campaigns/{campaignId}/creatives/{creativeId} Get creative manifest #
PUT /campaigns/{campaignId}/creatives/{creativeId} Update creative manifest #
DELETE /campaigns/{campaignId}/creatives/{creativeId} Delete creative manifest #
POST /campaigns/{campaignId}/creatives/{creativeId}/preview Preview creative #
POST /campaigns/{campaignId}/creatives/{creativeId}/duplicate Duplicate creative #
GET /campaigns/{campaignId}/creative-sessions/{sessionId} Get creative session #
POST /campaigns/{campaignId}/creative-sessions/{sessionId}/evaluate Evaluate creative session #
POST /campaigns/{campaignId}/creative-sessions/{sessionId}/finalize Finalize creative session #
GET /campaigns/{campaignId}/creative-references Get creative references #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/scope3-creatives-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

scope3-creatives-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Scope3 Buyer Creatives API
  version: 2.0.0
  description: 'REST API for advertisers to manage advertisers, campaigns, and reporting.


    ## Authentication


    All endpoints require a Bearer token in the Authorization header:

    ```

    Authorization: Bearer your-api-key

    ```


    ## Base URL


    `https://api.interchange.io/api/v2/buyer`


    ## For AI Agents


    AI agents can use the MCP endpoint at `/mcp/v2/buyer` with three tools:

    - `initialize`: Start an MCP session

    - `api_call`: Make REST API calls

    - `ask_about_capability`: Learn about API features'
servers:
- url: https://api.interchange.io/api/v2/buyer
  description: Production server
tags:
- name: Creatives
  description: Build, manage, and sync campaign creatives via AdCP Creative Protocol
paths:
  /advertisers/{advertiserId}/creative/model-credentials:
    get:
      operationId: listCreativeModelCredentials
      summary: List generation-provider keys for an advertiser
      description: 'List the buyer''s generation-provider keys usable for this advertiser — its assigned keys plus the customer''s all-accounts keys — each carrying a label, assignment, status, a masked key hint (never the raw key), and `effective: true` on the one auto-selected for its provider. Gated behind buyer-creative-v2 and buyer-generative-creative.'
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: advertiserId
        schema:
          description: Unique identifier for the advertiser
          example: '12345'
          type: string
          minLength: 1
        required: true
        description: Unique identifier for the advertiser
      responses:
        '200':
          description: List generation-provider keys for an advertiser
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdvertiserModelCredentialList'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Feature not enabled for this account (buyer-creative-v2 or buyer-generative-creative is off).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    post:
      operationId: connectCreativeModelCredential
      summary: Connect a generation-provider key for an advertiser
      description: Store a buyer generation-provider API key assigned to this advertiser so generation runs on the buyer's own account. The raw key is held in the secret manager; only a reference and a masked hint are persisted. Gated behind buyer-creative-v2 and buyer-generative-creative.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: advertiserId
        schema:
          description: Unique identifier for the advertiser
          example: '12345'
          type: string
          minLength: 1
        required: true
        description: Unique identifier for the advertiser
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConnectBuyerModelCredentialBody'
      responses:
        '200':
          description: Connect a generation-provider key for an advertiser
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BuyerModelCredential'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Feature not enabled for this account (buyer-creative-v2 or buyer-generative-creative is off).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /creative/model-credentials/{id}:
    patch:
      operationId: updateCreativeModelCredential
      summary: Update or rotate a generation-provider key
      description: Update a buyer generation-provider credential. Supplying `apiKey` atomically rotates only the stored secret while preserving the credential's label, advertiser assignments, and default status unless those fields are also explicitly changed. Gated behind buyer-creative-v2 and buyer-generative-creative.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: id
        schema:
          type: string
          pattern: ^[1-9]\d*$
        required: true
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                apiKey:
                  type: string
                  minLength: 1
                label:
                  type: string
                  minLength: 1
                  maxLength: 120
                advertiserIds:
                  type: array
                  items:
                    type: integer
                    maximum: 9007199254740991
                    minimum: 1
                isDefault:
                  type: boolean
      responses:
        '200':
          description: Update or rotate a generation-provider key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BuyerModelCredential'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Feature not enabled for this account (buyer-creative-v2 or buyer-generative-creative is off).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: No active model credential with this id.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /creative-dashboard-url:
    get:
      operationId: getCreativeDashboardUrl
      summary: Get creative dashboard URL
      description: Returns a fully-resolved URL to the Interchange creative dashboard scoped to the provided advertiser, campaign, and optionally a specific creative manifest. Pass all three IDs to deep-link directly to a manifest; omit manifestId to land at the campaign level; omit campaignId to land at the advertiser level.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: query
        name: advertiserId
        schema:
          description: Advertiser ID. Narrows the URL to the advertiser level.
          type: integer
          maximum: 9007199254740991
          minimum: 1
        description: Advertiser ID. Narrows the URL to the advertiser level.
      - in: query
        name: campaignId
        schema:
          description: Campaign ID. Requires advertiserId. Narrows the URL to the campaign level.
          type: string
        description: Campaign ID. Requires advertiserId. Narrows the URL to the campaign level.
      - in: query
        name: manifestId
        schema:
          description: Creative manifest ID. Requires both advertiserId and campaignId. Deep-links to a specific creative.
          type: string
        description: Creative manifest ID. Requires both advertiserId and campaignId. Deep-links to a specific creative.
      responses:
        '200':
          description: Get creative dashboard URL
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreativeDashboardUrlResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /campaigns/{campaignId}/creatives/create:
    post:
      operationId: createCreativeManifest
      summary: Create creative manifest
      description: Create a creative manifest with uploaded file assets and optional brief/tag metadata. Multipart form-data request with files and JSON metadata.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: campaignId
        schema:
          description: Campaign ID
          type: string
          minLength: 1
        required: true
        description: Campaign ID
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCreativeManifestMetadata'
      responses:
        '201':
          description: Create creative manifest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreativeManifestResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /campaigns/{campaignId}/creatives/templates:
    get:
      operationId: listCreativeTemplates
      summary: List creative templates
      description: List available creative templates plus the selected products required legacy format IDs and V2 format options for a campaign.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: campaignId
        schema:
          description: Campaign ID
          type: string
          minLength: 1
        required: true
        description: Campaign ID
      responses:
        '200':
          description: List creative templates
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AvailableTemplatesResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /campaigns/{campaignId}/creativeManifest:
    get:
      operationId: listCreativeManifests
      summary: List creative manifests
      description: List creative manifests for a campaign with optional filtering by status, quality, or search term.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: query
        name: search
        schema:
          description: Search by name
          type: string
          maxLength: 200
        description: Search by name
      - in: query
        name: promoted
        schema:
          description: When "true", return only promoted creative-library items (those with a creative_role of evergreen or reference). Flight-specific creatives are excluded.
          type: string
          enum:
          - 'true'
          - 'false'
        description: When "true", return only promoted creative-library items (those with a creative_role of evergreen or reference). Flight-specific creatives are excluded.
      - in: query
        name: role
        schema:
          description: 'Filter to a single library role: evergreen or reference (the shelf''s two tabs). Implies promoted; narrower than `promoted=true`.'
          allOf:
          - $ref: '#/components/schemas/CreativeRole'
        description: 'Filter to a single library role: evergreen or reference (the shelf''s two tabs). Implies promoted; narrower than `promoted=true`.'
      - in: query
        name: source
        schema:
          description: 'Filter by provenance: uploaded (A), generated (B), or connected (C).'
          allOf:
          - $ref: '#/components/schemas/CreativeSource'
        description: 'Filter by provenance: uploaded (A), generated (B), or connected (C).'
      - in: query
        name: format_kind
        schema:
          description: Filter by AdCP 3.1 canonical format kind (e.g. image_carousel, video_hosted).
          type: string
          minLength: 1
          maxLength: 255
        description: Filter by AdCP 3.1 canonical format kind (e.g. image_carousel, video_hosted).
      - in: query
        name: asset_type
        schema:
          description: Filter to creatives that carry at least one asset of this type.
          type: string
          enum:
          - IMAGE
          - VIDEO
          - AUDIO
          - HTML
          - JAVASCRIPT
          - CSS
          - TEXT
          - URL
          - VAST
          - FONT
          - LOGO
          - DOCUMENT
        description: Filter to creatives that carry at least one asset of this type.
      - in: query
        name: dimensions
        schema:
          description: Filter to creatives with an asset of these pixel dimensions, "WIDTHxHEIGHT" (e.g. "300x250").
          type: string
          pattern: ^\d{1,5}[x×]\d{1,5}$
        description: Filter to creatives with an asset of these pixel dimensions, "WIDTHxHEIGHT" (e.g. "300x250").
      - in: query
        name: take
        schema:
          description: Number of results to return (max 250)
          example: 50
          default: 50
          type: integer
          maximum: 250
          minimum: 1
        description: Number of results to return (max 250)
      - in: query
        name: skip
        schema:
          description: Number of results to skip for pagination
          example: 0
          default: 0
          type: integer
          minimum: 0
          maximum: 9007199254740991
        description: Number of results to skip for pagination
      - in: path
        name: campaignId
        schema:
          description: Campaign ID
          type: string
          minLength: 1
        required: true
        description: Campaign ID
      responses:
        '200':
          description: List creative manifests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreativeManifestListResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /campaigns/{campaignId}/creatives:
    get:
      operationId: listCreatives
      summary: List creatives
      description: List creative manifest summaries for a campaign, with optional text search and pagination. Returns the same summary rows as the manifest list.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: query
        name: search
        schema:
          description: Creative name substring search.
          type: string
        description: Creative name substring search.
      - in: query
        name: take
        schema:
          type: integer
          maximum: 9007199254740991
          minimum: 1
      - in: query
        name: skip
        schema:
          type: integer
          minimum: 0
          maximum: 9007199254740991
      - in: path
        name: campaignId
        schema:
          description: Campaign ID
          type: string
          minLength: 1
        required: true
        description: Campaign ID
      responses:
        '200':
          description: List creatives
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreativeManifestListResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /campaigns/{campaignId}/creatives/bulk-update:
    post:
      operationId: bulkUpdateCreatives
      summary: Bulk update creatives
      description: Preview or apply a bulk update to saved campaign creatives. Defaults to dry_run=true so the buyer can confirm the matched set before applying changes.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: campaignId
        schema:
          description: Campaign ID
          type: string
          minLength: 1
        required: true
        description: Campaign ID
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkUpdateCreativesBody'
      responses:
        '200':
          description: Bulk update creatives
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkUpdateCreativesResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /advertisers/{advertiserId}/creatives/create:
    post:
      operationId: createAdvertiserCreative
      summary: Create advertiser creative master
      description: Create a creative manifest scoped to an advertiser without requiring a campaign. The resulting master can be assigned to one or more campaigns.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: advertiserId
        schema:
          description: Advertiser ID
          type: string
          minLength: 1
        required: true
        description: Advertiser ID
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCreativeManifestMetadata'
      responses:
        '200':
          description: Create advertiser creative master
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreativeManifestResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /advertisers/{advertiserId}/creatives:
    get:
      operationId: listAdvertiserCreatives
      summary: List advertiser creative library
      description: List all creative manifests belonging to an advertiser, independent of campaign.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: query
        name: search
        schema:
          description: Search by name
          type: string
          maxLength: 200
        description: Search by name
      - in: query
        name: promoted
        schema:
          description: When "true", return only promoted creative-library items (those with a creative_role of evergreen or reference). Flight-specific creatives are excluded.
          type: string
          enum:
          - 'true'
          - 'false'
        description: When "true", return only promoted creative-library items (those with a creative_role of evergreen or reference). Flight-specific creatives are excluded.
      - in: query
        name: role
        schema:
          description: 'Filter to a single library role: evergreen or reference (the shelf''s two tabs). Implies promoted; narrower than `promoted=true`.'
          allOf:
          - $ref: '#/components/schemas/CreativeRole'
        description: 'Filter to a single library role: evergreen or reference (the shelf''s two tabs). Implies promoted; narrower than `promoted=true`.'
      - in: query
        name: source
        schema:
          description: 'Filter by provenance: uploaded (A), generated (B), or connected (C).'
          allOf:
          - $ref: '#/components/schemas/CreativeSource'
        description: 'Filter by provenance: uploaded (A), generated (B), or connected (C).'
      - in: query
        name: format_kind
        schema:
          description: Filter by AdCP 3.1 canonical format kind (e.g. image_carousel, video_hosted).
          type: string
          minLength: 1
          maxLength: 255
        description: Filter by AdCP 3.1 canonical format kind (e.g. image_carousel, video_hosted).
      - in: query
        name: asset_type
        schema:
          description: Filter to creatives that carry at least one asset of this type.
          type: string
          enum:
          - IMAGE
          - VIDEO
          - AUDIO
          - HTML
          - JAVASCRIPT
          - CSS
          - TEXT
          - URL
          - VAST
          - FONT
          - LOGO
          - DOCUMENT
        description: Filter to creatives that carry at least one asset of this type.
      - in: query
        name: dimensions
        schema:
          description: Filter to creatives with an asset of these pixel dimensions, "WIDTHxHEIGHT" (e.g. "300x250").
          type: string
          pattern: ^\d{1,5}[x×]\d{1,5}$
        description: Filter to creatives with an asset of these pixel dimensions, "WIDTHxHEIGHT" (e.g. "300x250").
      - in: query
        name: take
        schema:
          description: Number of results to return (max 250)
          example: 50
          default: 50
          type: integer
          maximum: 250
          minimum: 1
        description: Number of results to return (max 250)
      - in: query
        name: skip
        schema:
          description: Number of results to skip for pagination
          example: 0
          default: 0
          type: integer
          minimum: 0
          maximum: 9007199254740991
        description: Number of results to skip for pagination
      - in: path
        name: advertiserId
        schema:
          description: Advertiser ID
          type: string
          minLength: 1
        required: true
        description: Advertiser ID
      responses:
        '200':
          description: List advertiser creative library
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreativeManifestListResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /advertisers/{advertiserId}/creatives/save-to-library:
    post:
      operationId: saveCreativesToLibrary
      summary: Promote advertiser creatives into the library shelf
      description: Buyer-creative-v2 (feature-flagged). Promotes advertiser creatives into the durable creative library ("the shelf") with a role — `evergreen` (serve-ready, reusable across campaigns) or `reference` (a generation input, not served). Identify the creatives by `creative_ids` or by `collection_id`. No campaign is required. Returns 404 for callers not enrolled in the flag.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: advertiserId
        schema:
          description: Advertiser ID
          type: string
          minLength: 1
        required: true
        description: Advertiser ID
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SaveCreativesToLibraryBody'
      responses:
        '200':
          description: Promote advertiser creatives into the library shelf
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SaveCreativesToLibraryResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /creatives/stash:
    post:
      operationId: stashBroughtCreatives
      summary: Stash brought creatives before an advertiser is chosen
      description: Buyer-creative-v2 (feature-flagged). Persists uploaded creatives customer-scoped BEFORE an advertiser is named, so the upload survives across turns. Returns the saved creatives (with ids) in the same shape as the creative-intent picker; pass those ids to getCreativeIntent as `creative_ids` once the advertiser is known. Returns 404 for callers not enrolled in the flag.
      tags:
      - Creatives
      security:
      - bearerAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                assets:
                  minItems: 1
                  maxItems: 50
                  type: array
                  items:
                    type: object
                    properties:
                      data_url:
                        type: string
                        maxLength: 73400320
                      asset_type:
                        type: string
                        enum:
                        - IMAGE
                        - VIDEO
                        - AUDIO
                        - HTML
                        - VAST
                      name:
                        type: string
                      declared_sizes:
                        maxItems: 30
                        type: array
                        items:
                          type: object
                          properties:
                            width:
                              type: integer
                              maximum: 9007199254740991
                              minimum: 1
                            height:
                              type: integer
                              maximum: 9007199254740991
                              minimum: 1
                          required:
                          - width
                          - height
                    required:
                    - data_url
              required:
              - assets
      responses:
        '200':
          description: Stash brought creatives before an advertiser is chosen
          content:
            application/json:
              schema:
                type: object
                properties:
                  advertiser_name:
                    type: string
                  advertisers:
                    type: array
                    items:
                      type: object
                      properties:
                        advertiser_id:
                          type: string
                        name:
                          type: string
                      required:
                      - advertiser_id
                      - name
                      additionalProperties: false
                  selected_advertiser_id:
                    type: string
                  files:
                    type: array
                    items:
                      type: object
                      properties:
                        file_id:
                          type: string
                        filename:
                          type: string
                        media_kind:
                          type: string
                          enum:
                          - image
                          - video
                          - audio
                          - tag
                        preview_url:
                          type: string
                      required:
                      - file_id
                      - filename
                      - media_kind
                      additionalProperties: false
                  recent_campaigns:
                    type: array
                    items:
                      type: object
                      properties:
                        campaign_id:
                          type: string
                        name:
                          type: string
                        created_label:
                          type: string
                      required:
                      - campaign_id
                      - name
                      additionalProperties: false
                  saved_as:
                    type: string
                  collection_id:
                    type: string
                  skipped_files_notice:
                    type: string
                  skipped_files:
                    type: array
                    items:


# --- truncated at 32 KB (376 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/scope3/refs/heads/main/openapi/scope3-creatives-api-openapi.yml