Name |
C# DataType |
Description |
LastUpdatedBySomeoneElseSince |
DateTime |
The list of Orders you receive will only contain those Orders that have been modified since the specified date.
Orders that were last modified by a POST request to http://api.resengo.com/WS/Order are excluded.
You can use this parameter to set up a heartbeat synchronisation application.
|
OrderID |
List<int> |
The list of Orders you receive will only contain the Orders with the specified OrderIDs.
Multiple values are possible using the notation &OrderID=123&OrderID=456&OrderID=...
|
Sorting |
string |
The field that should be used to sort the resulting list (this affects Paging also).
Currently possible values:
- OrderIDAscending (default)
- UpdateDateAscending
If you are using the response of this request to do updates to your system, expecially when using the parameter LastUpdatedBySomeoneElseSince, you should use OrderIDAscending to prevent concurrency problems.
|
IncludeOrderItems |
bool (default: false) |
If set to true, every Order in the response will also contain all its current OrderItems. Beware that this greatly increases response size and should preferably be used along with the OrderID parameter.
You can always request the OrderItems individually by issuing a GET request to http://api.resengo.com/WS/OrderItem.
|
NumberOfItemsPerPage |
int (default: 50) |
You will receive only this many results at a time.
You can request the rest of the items by re-issuing the call with another CurrentPageIndex parameter.
The default of 50 is also the maximum value.
|
CurrentPageIndex |
int (default: 1) |
See the description of NumberOfItemsPerPage
|