Skip to main content
await luma.events.guests.add("evt-abc123", {
  guests: [
    { email: "jane@example.com", name: "Jane Doe" },
    { email: "john@example.com", name: "John Doe" },
  ],
});
null
SDK luma.events.guests.add(eventId: string, body: GuestAddParams): Promise<void> Adds one or more guests to an event.
await luma.events.guests.add("evt-abc123", {
  guests: [
    { email: "jane@example.com", name: "Jane Doe" },
    { email: "john@example.com", name: "John Doe" },
  ],
});
null

Parameters

eventId
string
required
Event api_id from events.list().
body
GuestAddParams
required
Guest details to add. See the official Luma API docs for available fields.

Test it

Add a test guest to a test event, then confirm with events.guests.list():
const eventId = "evt-abc123";

await luma.events.guests.add(eventId, {
  guests: [{ email: "test@example.com", name: "Test Guest" }],
});
console.log("Guest added");