Create an entry in a waitlist
Create an entry in a waitlist.
URL
POST
https://gowaitly.com/api/waitlists/{waitlistId}/entries
Headers
{
'Content-Type': 'application/json',
'X-API-Key': 'your_api_key',
'X-Waitlist-ID': 'your_waitlist_id',
}
Body
The body is a JSON object with the following properties Note: only email is required.
{
"email": "test@test.com",
"referredByCode": "123456",
"utm": {
"utm_source": "google",
"utm_medium": "cpc",
"utm_campaign": "campaign_name"
},
"metadata": {
"name": "John Doe"
}
}
Reponse
{
"id": "string",
"email": "string"
}