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

    Interface GetBenefitApplicationsQuery

    Query parameters for sb.benefits.applications.list().

    interface GetBenefitApplicationsQuery {
        benefitRef?: string;
        categoryRef?: string;
        "createDate[gte]"?: string;
        "createDate[lte]"?: string;
        customerRef?: string;
        limit?: number;
        locationRef?: string;
        nextPageToken?: string;
        userRef?: string;
    }
    Index
    benefitRef?: string

    UUID of the benefit.

    categoryRef?: string

    Comma-separated benefit category UUIDs, e.g. uuid1,uuid2.

    "createDate[gte]"?: string

    Filter applications submitted on or after this date (ISO 8601). Use with createDate[lte] for a range.

    "createDate[lte]"?: string

    Filter applications submitted on or before this date (ISO 8601). Use with createDate[gte] for a range.

    customerRef?: string

    UUID of the customer whose applications to list.

    limit?: number

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

    locationRef?: string

    UUID of the location.

    nextPageToken?: string

    Pagination token from nextPageToken in a previous response. Keep the same filters when fetching the next page.

    userRef?: string

    UUID of the user whose applications to list.