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

    Interface ListCreativeFormatsRequest

    Filter by format type (technical categories with distinct requirements)

    interface ListCreativeFormatsRequest {
        format_ids?: FormatID[];
        type?: FormatCategory;
        asset_types?: AssetContentType[];
        max_width?: number;
        max_height?: number;
        min_width?: number;
        min_height?: number;
        is_responsive?: boolean;
        name_search?: string;
        context?: ContextObject;
        ext?: ExtensionObject;
    }
    Index

    Properties

    format_ids?: FormatID[]

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

    type?: FormatCategory
    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)

    context?: ContextObject
    ext?: ExtensionObject