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

    Interface GetEventTicketsQuery

    Query parameters for sb.events.tickets.list().

    interface GetEventTicketsQuery {
        customerRef?: string;
        eventRef?: string;
        includeDeleted?: string;
        limit?: number;
        locationRef?: string;
        nextPageToken?: string;
        status?: string;
        userRef?: string;
    }
    Index
    customerRef?: string

    UUID of the customer whose event tickets to list.

    eventRef?: string

    UUID of the event whose tickets to list.

    includeDeleted?: string

    Use status "canceled" instead. Set to "true" to include deleted event tickets.

    limit?: number

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

    locationRef?: string

    UUID of the location whose event tickets to list.

    nextPageToken?: string

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

    status?: string

    Filter by event ticket status. Comma-separated values, e.g. active,canceled. Defaults to active when omitted.

    Supported values:

    • active — the ticket is valid
    • canceled — the ticket was deleted
    userRef?: string

    UUID of the user whose event tickets to list.