@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface CreativeApprovalRequest

    Payload submitted by the buyer to the approval_webhook URL from acquire_rights. Contains the creative for rights holder review before distribution.

    interface CreativeApprovalRequest {
        adcp_major_version?: number;
        rights_id: string;
        creative_id?: string;
        creative_url: string;
        creative_format?: FormatReferenceStructuredObject;
        description?: string;
        metadata?: {};
        idempotency_key: string;
        context?: ContextObject;
        ext?: ExtensionObject;
    }
    Index

    Properties

    adcp_major_version?: number

    The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.

    1

    99

    rights_id: string

    Rights grant this creative was produced under

    creative_id?: string

    Buyer-assigned creative identifier. Equivalent to OpenRTB crid. Used to track approval status across resubmissions.

    creative_url: string

    URL where the creative asset can be retrieved for review

    description?: string

    Description of the creative for reviewer context

    metadata?: {}

    Additional creative metadata (duration, dimensions, target audience, etc.)

    idempotency_key: string

    Client-generated key for safe retries. Resubmitting with the same key returns the original response. MUST be unique per (seller, request) pair to prevent cross-seller correlation. Use a fresh UUID v4 for each request.

    16

    255

    ^[A-Za-z0-9_.:-]{16,255}$

    context?: ContextObject
    ext?: ExtensionObject