WaitingListRequestQuery
Set of parameters used to filter waiting list requests.
More info: see waiting list request, the getlist operation and the waiting list requests endpoint.
Fields
Field | Description |
---|---|
filter
string
|
Filter the returned items by specifying a query on the public datamodel that returns the ids. Example value:"select id from op.waitinglistrequest WHERE createdts > (now() - INTERVAL '30 days')" |
includearchived
bool
|
If this parameter is true, archived items will be returned as well. Example value:true |
lastupdatesince
timestamp
|
All items that were updated since this timestamp will be returned. Timestamp should be passed in "2014-09-26 15:24:36" |
Example
1{
2 "filter": "select id from op.waitinglistrequest WHERE createdts > (now() - INTERVAL '30 days')",
3 "includearchived": true,
4 "lastupdatesince": "2014-09-26 15:24:36"
5}