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": "jsmith@example.com",
  "referrer": "<string>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email": "jsmith@example.com",
  "waiting_number": 123,
  "has_access": true,
  "created_at": "2023-11-07T05:31:56Z",
  "referrer": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://outline.letraz.app/llms.txt

Use this file to discover all available pages before exploring further.

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
read-only

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
read-only

The waiting number of the user who joined the waitlist.

has_access
boolean
required
read-only

Whether the user has been granted access to the platform.

created_at
string<date-time>
required
read-only

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