Interface ProductListParams

Parameters for listing products

interface ProductListParams {
    collection_id?: number;
    created_on_max?: string;
    created_on_min?: string;
    fields?: string[];
    limit?: number;
    page?: number;
    product_type?: string;
    published?: boolean;
    updated_on_max?: string;
    updated_on_min?: string;
    vendor?: string;
}

Hierarchy (view full)

Properties

collection_id?: number

Filter by collection

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'

limit?: number

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

page?: number

Page number (1-based).

product_type?: string

Filter by category/type

published?: boolean

Filter by publication status

updated_on_max?: string

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

updated_on_min?: string

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

vendor?: string

Filter by manufacturer/brand