Signup endpoint
{
"waitlist_id": "string",
"email": "[email protected]",
"name": "string"
} # Sample Python Request
import requests
url = "https://api.waitstream.com/api/v1/waitlist/sign-up"
headers = {
"accept": "application/json",
"Content-Type": "application/json"
}
data = {
"waitlist_id": "string", # Replace with actual waitlist_id
"email": "[email protected]", # Replace with the user's email
"name": "string" # This is optional, Replace with actual user name
}
response = requests.post(url, json=data, headers=headers)
print(response.status_code)
print(response.json())
Last updated