Events
Join Event Waiting List
Adds the authenticated customer to the waiting list for a sold-out event.
POST
Join Event Waiting List
Join Event Waiting List
Registers the authenticated customer on the waiting list for an event that has no available tickets. When a spot becomes available, the operator can notify waiting-list members. Only callable whenCalendarEvent.EnableWaitList is true and the event is sold out.
Authentication
Requires a valid customer bearer token.Path Parameters
The integer ID of the event. Obtained as
Id from GET /api/public/events or GET /api/public/events/{id}.Request Body
The request body accepts the customer’s waiting-list registration data. The exact fields depend on the event configuration; pass an empty object{} if no additional fields are required.
Full name of the customer registering for the waiting list.
Email address to notify when a spot becomes available.
Response
Returns an empty200 OK on success.
Examples
Join the waiting list
TypeScript Integration
Usage in Portal
Error Responses
The customer is not authenticated or the session has expired.
No event with the specified ID exists.
The event does not have waiting list enabled (
EnableWaitList is false), or the customer is already on the waiting list.Related Endpoints
Join Event Waiting List