function getAttendeesByIds
getAttendeesByIds(ids: number[]): Promise<Attendee[]>

Get attendees by ID without decrypting PII, one row per (attendee, booking). Used by the agent run sheet, which already knows the attendee ids it needs and only reads each attendee's contact fields. Returns an empty array for no ids. Decrypt with decryptAttendees before display.

Parameters

ids: number[]

Return Type

Promise<Attendee[]>

Usage

import { getAttendeesByIds } from "docs/database.ts";