Event Wait

Event waits are used to get on a waiting list for an Event that has few or no remaining Tickets, so that you can get notified when tickets become available. Event Waits are accessed via /api/eventwait.

Properties

See "Object Properties" in Introduction for basic shared properties.

Complete details in EventWaitProperties.

Related Objects

See "Related Objects" in Introduction for how to use them.

convention

The Convention this event wait belongs to.

event

The Event this event wait belongs to.

user

The User this event wait belongs to.

Services

The services used to fetch and manipulate event waits.

Search Event Waits

This will search across all conventions. To search on a single convention see "Relationships" in Convention.

 GET /api/eventwait

Create Event Wait

 POST /api/eventwait
Required Params
convention_id
user_id
event_id

Returns the same as a normal read.

Read Event Wait

 GET /api/eventwait/xxx

Returns:

 {
   "id" : "xxx",
   "user_id" : "xxx",
   ...
 }

Update Event Wait

 PUT /api/eventwait/xxx

Returns the same as a normal read.

Delete Event Wait

 DELETE /api/eventwait/xxx

Returns:

 {
   "success" : 1
 }