@adcp/client API Reference - v4.18.2
    Preparing search index...

    Interface ListCreativeFormatsRequest

    Request parameters for discovering supported creative formats

    interface ListCreativeFormatsRequest {
        format_ids?: FormatID[];
        asset_types?: AssetContentType[];
        max_width?: number;
        max_height?: number;
        min_width?: number;
        min_height?: number;
        is_responsive?: boolean;
        name_search?: string;
        wcag_level?: WCAGLevel;
        disclosure_positions?: DisclosurePosition[];
        disclosure_persistence?: DisclosurePersistence[];
        output_format_ids?: FormatID[];
        input_format_ids?: FormatID[];
        pagination?: PaginationRequest;
        context?: ContextObject;
        ext?: ExtensionObject;
    }
    Index

    Properties

    format_ids?: FormatID[]

    Return only these specific format IDs (e.g., from get_products response)

    asset_types?: AssetContentType[]

    Filter to formats that include these asset types. For third-party tags, search for 'html' or 'javascript'. E.g., ['image', 'text'] returns formats with images and text, ['javascript'] returns formats accepting JavaScript tags.

    max_width?: number

    Maximum width in pixels (inclusive). Returns formats where ANY render has width <= this value. For multi-render formats, matches if at least one render fits.

    max_height?: number

    Maximum height in pixels (inclusive). Returns formats where ANY render has height <= this value. For multi-render formats, matches if at least one render fits.

    min_width?: number

    Minimum width in pixels (inclusive). Returns formats where ANY render has width >= this value.

    min_height?: number

    Minimum height in pixels (inclusive). Returns formats where ANY render has height >= this value.

    is_responsive?: boolean

    Filter for responsive formats that adapt to container size. When true, returns formats without fixed dimensions.

    name_search?: string

    Search for formats by name (case-insensitive partial match)

    wcag_level?: WCAGLevel
    disclosure_positions?: DisclosurePosition[]

    Filter to formats that support all of these disclosure positions. When a format has disclosure_capabilities, match against those positions. Otherwise fall back to supported_disclosure_positions. Use to find formats compatible with a brief's compliance requirements.

    disclosure_persistence?: DisclosurePersistence[]

    Filter to formats where each requested persistence mode is supported by at least one position in disclosure_capabilities. Different positions may satisfy different modes. Use to find formats compatible with jurisdiction-specific persistence requirements (e.g., continuous for EU AI Act).

    output_format_ids?: FormatID[]

    Filter to formats whose output_format_ids includes any of these format IDs. Returns formats that can produce these outputs — inspect each result's input_format_ids to see what inputs they accept.

    input_format_ids?: FormatID[]

    Filter to formats whose input_format_ids includes any of these format IDs. Returns formats that accept these creatives as input — inspect each result's output_format_ids to see what they can produce.

    pagination?: PaginationRequest
    context?: ContextObject
    ext?: ExtensionObject