Name |
C# DataType |
Description |
LastUpdatedBySomeoneElseSince |
DateTime |
The list of Transactions you receive will only contain those Transactions that have been modified since the specified date.
Transactions that were last modified by a POST request to http://api.resengo.com/FI/Transaction are excluded.
You can use this parameter to set up a heartbeat synchronisation application.
|
TransactionID |
List<int> |
The list of Transactions you receive will only contain the Transactions with the specified TransactionID.
Multiple values are possible using the notation &TransactionID=123&TransactionID=456&TransactionID=...
|
Sorting |
string |
The field that should be used to sort the resulting list (this affects Paging also).
Currently possible values:
- TransactionIDAscending (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 TransactionIDAscending 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
|