WaitingListRequest
A single waiting list request.
More info: see the get operation and the waiting list requests endpoint.
Fields
Field | Description |
---|---|
id int (required) | Unique ID Example value:123 |
orderid int (required) | The id of the order the request is converted to Example value:1 |
contactid int (required) | Contact id Example value:1 |
itemsstatus int (required) | Show the status of the related items, 29101 |
requeststatus int (required) | Show the status of the request, 29201 |
saleschannelid int (required) | The id of the saleschannel used to make the request Example value:1 |
sortorder int (required) | Randomly generated identifier on create. Provides random but consistent ordering of the request (for casting lots) Example value:1324 |
waitinglistrequestitems | The request items per event Example value:[ { "eventid": 12345, "tickets": [ { "tickettypepriceid": 1 }, { "tickettypepriceid": 1 }, { "tickettypepriceid": 2 }, { "tickettypepriceid": 3 } ] } ] |
isarchived bool (required) | Whether or not this item is archived |
createdts timestamp (required) | Created timestamp Example value:"2014-09-26 15:24:36" |
lastupdatets timestamp (required) | Last updated timestamp Example value:"2014-09-26 15:24:36" |
This type can have custom fields
Example
1{
2 "id": 123,
3 "orderid": 1,
4 "contactid": 1,
5 "itemsstatus": 29101,
6 "requeststatus": 29201,
7 "saleschannelid": 1,
8 "sortorder": 1324,
9 "waitinglistrequestitems": [
10 {
11 "eventid": 12345,
12 "tickets": [
13 {
14 "tickettypepriceid": 1
15 },
16 {
17 "tickettypepriceid": 1
18 },
19 {
20 "tickettypepriceid": 2
21 },
22 {
23 "tickettypepriceid": 3
24 }
25 ]
26 }
27 ],
28 "isarchived": false,
29 "createdts": "2014-09-26 15:24:36",
30 "lastupdatets": "2014-09-26 15:24:36"
31}