Skip to main content
POST
/
support
/
add-email-waitlist
Add Email to Waitlist
curl --request POST \
  --url http://localhost:3000/api/support/add-email-waitlist \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "accountType": "artist"
}
'
{
  "success": true
}

Body

application/json
email
string<email>
required

Email address to add to waitlist

accountType
enum<string>
required

Type of account

Available options:
artist,
client

Response

Email added to waitlist successfully

success
boolean
required

Whether the operation was successful