Pennylane API Client
    Preparing search index...

    Interface GetCustomersQueryParams

    Query parameters for listing customers.

    interface GetCustomersQueryParams {
        cursor?: string;
        filter?: readonly CustomerFilter[];
        limit?: number;
        sort?: GetCustomersSort;
    }

    Hierarchy

    • CursorPaginationQueryParams
      • GetCustomersQueryParams
    Index

    Properties

    cursor?: string

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

    filter?: readonly CustomerFilter[]

    Filter customers 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 customers by id. Use -id for descending order.