Interface CollectionListParams

Parameters for listing collections

interface CollectionListParams {
    collection_type?: CollectionType;
    created_on_max?: string;
    created_on_min?: string;
    fields?: string[];
    handle?: string;
    limit?: number;
    page?: number;
    product_id?: number;
    published?: boolean;
    title?: string;
    updated_on_max?: string;
    updated_on_min?: string;
}

Hierarchy (view full)

Properties

collection_type?: CollectionType

Filter by collection type

created_on_max?: string

Filter by created date (end). ISO 8601 format: '2025-01-01T00:00:00Z'

created_on_min?: string

Filter by created date (start). ISO 8601 format: '2025-01-01T00:00:00Z'

fields?: string[]

Fields to include in the response. Use comma-separated values: 'id,name,created_on'

handle?: string

Filter by handle

limit?: number

Number of items per page. Maximum value varies by endpoint.

page?: number

Page number (1-based).

product_id?: number

Filter by product ID

published?: boolean

Filter by published status

title?: string

Filter by title

updated_on_max?: string

Filter by updated date range end

updated_on_min?: string

Filter by updated date range start