Skip to main content
POST
/
waitlist
Add a new waitlist
curl --request POST \
  --url https://api.letraz.app/api/v1/waitlist/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "referrer": "<string>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email": "[email protected]",
  "waiting_number": 123,
  "has_access": true,
  "created_at": "2023-11-07T05:31:56Z",
  "referrer": "<string>"
}

Body

email
string<email>
required

The email of the user who joined the waitlist.

Maximum string length: 254
referrer
string

The referrer of the user who joined the waitlist. Usually the source they have come from.

Maximum string length: 50

Response

id
string<uuid>
required

The unique identifier for the waitlist entry.

email
string<email>
required

The email of the user who joined the waitlist.

Maximum string length: 254
waiting_number
integer
required

The waiting number of the user who joined the waitlist.

has_access
boolean
required

Whether the user has been granted access to the platform.

created_at
string<date-time>
required

The timestamp at which the user joined the waitlist.

referrer
string

The referrer of the user who joined the waitlist. Usually the source they have come from.

Maximum string length: 50