Waitlist

Join the waitlist

POST
/api/v1/waitlist/join
/api/v1/waitlist/join

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The information of the user joining the waitlist

name
Required
string

Minimum length: 1

email
Required
string

Minimum length: 1Format: "email"
curl -X POST "https://example.com/api/v1/waitlist/join" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "string",
    "email": "[email protected]"
  }'

OK