@izak0s/spacebring-api - v7.1.0
    Preparing search index...

    Interface GetDayPassesTransactionsQuery

    Query parameters for sb.transactions.dayPasses.list().

    interface GetDayPassesTransactionsQuery {
        companyRef?: string;
        "createDate[gte]"?: string;
        "createDate[lte]"?: string;
        customerRef?: string;
        limit?: number;
        locationRef?: string;
        membershipRef?: string;
        nextPageToken?: string;
        type?: string;
    }
    Index
    companyRef?: string

    Use customerRef instead. The id of the company to get transactions for.

    "createDate[gte]"?: string

    Get transactions with greater or equal createDate. Example: createDate[gte]=2021-05-21T10:00:00Z

    "createDate[lte]"?: string

    Get transactions with less or equal createDate. Example: createDate[lte]=2021-05-21T10:00:00Z

    customerRef?: string

    UUID of the company or membership whose day pass transactions to list.

    limit?: number

    Maximum number of transactions per page. Defaults to 25 when omitted or invalid; values above 100 are capped at 100.

    locationRef?: string

    UUID of the location whose day pass transactions to list.

    membershipRef?: string

    Use customerRef instead. The id of the membership to get transactions for.

    nextPageToken?: string

    Token to retrieve the next page of results.

    type?: string

    Filter by transaction type. Comma-separated storage type values, e.g. type=refund,booking. Matches analytics report type filters.