Pennylane API Client
    Preparing search index...

    Interface GetProductsQueryParams

    Query parameters for listing products.

    interface GetProductsQueryParams {
        cursor?: string;
        filter?: readonly ProductFilter[];
        limit?: number;
        sort?: string;
    }

    Hierarchy

    • CursorPaginationQueryParams
      • GetProductsQueryParams
    Index

    Properties

    cursor?: string

    Cursor for pagination. Use this to fetch the next set of results.

    filter?: readonly ProductFilter[]

    Filter products by specific fields. API format: JSON array serialized into a query string.

    limit?: number

    Number of items to return per request (between 1 and 100).

    sort?: string

    Sort products by attributes. Prefix with - for descending order.