Name |
C# DataType |
Description |
LastUpdatedBySomeoneElseSince |
DateTime |
The list of OrderItems you receive will only contain those OrderItems that have been modified since the specified date.
OrderItems that were last modified by a POST request to http://api.resengo.com/WS/OrderItem are excluded.
You can use this parameter to set up a heartbeat synchronisation application.
|
OrderID |
List<int> |
The list of OrderItems you receive will only contain those OrderItems that belong to the Orders with the specified OrderIDs.
Multiple values are possible using the notation &OrderID=123&OrderID=456&OrderID=...
|
OrderItemID |
List<int> |
The list of OrderItems you receive will only contain those OrderItems with the specified OrderItemIDs.
Multiple values are possible using the notation &OrderItemID=123&OrderItemID=456&OrderItemID=...
|
Sorting |
string |
The field that should be used to sort the resulting list (this affects Paging also).
Currently possible values:
- OrderItemIDAscending (default)
If you are using the response of this request to do updates to your system, expecially when using the parameter LastUpdatedBySomeoneElseSince, you should use OrderItemIDAscending to prevent concurrency problems.
|
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
|