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 event_attendees for those attendees. Returns results in the same order as input tokens (deduped). Bookings sorted by start_at then event_id for deterministic ordering.

Parameters

tokens: string[]

Return Type

Promise<(AttendeeWithBookings | null)[]>

Usage

import { getAttendeesByTokens } from "doc.ts";