v13

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-04237161688.6 KB
Waitlist Entries

Create multiple waitlist entries

Creates multiple waitlist entries for the provided email addresses. You can choose whether to send confirmation emails by setting the notify parameter to true or false for each entry. If the notify parameter is omitted, it defaults to true.

If an email address is already on the waitlist, no new entry will be created and the existing waitlist entry will be returned. Duplicate email addresses within the same request are not allowed.

This endpoint is limited to a maximum of 50 entries per API call. If you need to add more entries, please make multiple requests.

post/waitlist_entries/bulk

Request body

email_addressstring email required

The email address to add to the waitlist

notifyboolean nullable

Optional flag which denotes whether a confirmation email should be sent to the given email address. Defaults to true.

Response

Array of waitlist entries

object'waitlist_entry' required
idstring required
email_addressstring email required
status'pending' | 'invited' | 'rejected' | 'completed' required
is_lockedboolean

Indicates if the waitlist entry is locked. Locked entries are being processed in a batch action and are unavailable for other actions.

created_atinteger required

Unix timestamp of creation.

updated_atinteger required

Unix timestamp of last update.

Example response

[
  {
    "status": "pending",
    "invitation": {
      "status": "pending"
    }
  }
]