function getAttendeesByTokens
getAttendeesByTokens(tokens: string[]): Promise<(AttendeeWithBookings | null)[]>

Look up attendees by plaintext tokens, returning full booking data. Two queries: attendees by token index, then all listing_attendees for those attendees. Returns results in the same order as input tokens. Bookings sorted by start_at then listing_id for deterministic ordering.

Parameters

tokens: string[]

Return Type

Promise<(AttendeeWithBookings | null)[]>

Usage

import { getAttendeesByTokens } from "doc.ts";