Webhooks
Event Types for Webhooks
This is a documentation of what your endpoints could receive depending on the event type.
NewSignup
This event gets triggered each time a person signs up to your waitlist.
Sample POST data that may be returned to your endpoint:
{
"eventType": "NewSignup",
"data": {
"email": "john.doe@example.com"
"custom_inputs": [
{ "name": "Enter your fav number?", "value": "21" },
{ "name": "What is your age?", "value": "33" },
{ "name": "What is your phone number?", "value": "(000) - 000 - 0000" }
]
}
}jsonNewReferral
This event gets triggered each time a person gets referred to your waitlist.
Sample POST data that may be returned to your endpoint:
{
"eventType": "NewReferral",
"data": {
"email": "john.doe@example.com"
}
}json