Interface InventoryListParams

Parameters for listing inventory items

interface InventoryListParams {
    created_on_max?: string;
    created_on_min?: string;
    fields?: string[];
    limit?: number;
    location_id?: number;
    page?: number;
    product_id?: number;
    sku?: string;
    tracked?: boolean;
    updated_on_max?: string;
    updated_on_min?: string;
    variant_id?: number;
}

Hierarchy (view full)

Properties

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.

location_id?: number

Filter by location ID

page?: number

Page number (1-based).

product_id?: number

Filter by product ID

sku?: string

Filter by SKU

tracked?: boolean

Filter by tracking status

updated_on_max?: string

Filter by update date range end

updated_on_min?: string

Filter by update date range start

variant_id?: number

Filter by variant ID