Waitlist Entries

Create a waitlist entry

Creates a new waitlist entry for the given email address. If the email address is already on the waitlist, no new entry will be created and the existing waitlist entry will be returned.

SecuritybearerAuth
Request
Request Body schema: application/json
email_address
required
string

The email address to add to the waitlist

Responses
200

A Waitlist Entry

400

Request was not successful

422

Invalid request parameters

post/waitlist_entries
Request samples
application/json
{
  • "email_address": "string"
}
Response samples
application/json
{
  • "object": "waitlist_entry",
  • "id": "string",
  • "email_address": "user@example.com",
  • "status": "pending",
  • "created_at": 0,
  • "updated_at": 0,
  • "invitation": {
    }
}