VoucherQuery
Set of parameters used to filter vouchers.
More info: see voucher, the getlist operation and the vouchers endpoint.
Fields
Field | Description |
---|---|
typeid int | Only return items with the given typeid. Example value:24001 |
filter string | Filter the returned items by specifying a query on the public datamodel that returns the ids. Example value:"SELECT id FROM tm.voucher WHERE nbrofcodes=0" |
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 "typeid": 24001,
3 "filter": "SELECT id FROM tm.voucher WHERE nbrofcodes=0",
4 "includearchived": true,
5 "lastupdatesince": "2014-09-26 15:24:36"
6}