@adcp/client API Reference - v3.3.3
    Preparing search index...

    Interface ListCreativeFormatsResponse

    Response payload for list_creative_formats task

    interface ListCreativeFormatsResponse {
        formats: Format[];
        creative_agents?: {
            agent_url: string;
            agent_name?: string;
            capabilities?: CreativeAgentCapability[];
        }[];
        errors?: Error[];
        context?: ContextObject;
        ext?: ExtensionObject;
    }
    Index

    Properties

    formats: Format[]

    Full format definitions for all formats this agent supports. Each format's authoritative source is indicated by its agent_url field.

    creative_agents?: {
        agent_url: string;
        agent_name?: string;
        capabilities?: CreativeAgentCapability[];
    }[]

    Optional: Creative agents that provide additional formats. Buyers can recursively query these agents to discover more formats. No authentication required for list_creative_formats.

    Type Declaration

    • agent_url: string

      Base URL for the creative agent (e.g., 'https://reference.adcp.org', 'https://dco.example.com'). Call list_creative_formats on this URL to get its formats.

    • Optionalagent_name?: string

      Human-readable name for the creative agent

    • Optionalcapabilities?: CreativeAgentCapability[]

      Capabilities this creative agent provides

    errors?: Error[]

    Task-specific errors and warnings (e.g., format availability issues)

    context?: ContextObject
    ext?: ExtensionObject