request |
read for query parameters to be used as search criteria; use any combination of fields from tables:
settlement - use settlement or no prefix
movement - use movement prefix
payee - use payee prefix
For example, /settlements?settlement.ok2pay_date=>=t-7&movement.loaded=L
would return settlement records from loaded movements having marked ok to pay within the last 7 days.
Sorting: To sort the result set, you can provide the following reserved query parameter: orderBy If the orderBy parameter is not provided a default sort of settlement.transfer_date+DESC will be applied.
For example, /settlements/search?settlement.payee_id=*&orderBy=settlement.ok2pay_date+DESC would return settlement records for all payees sorted descending by ok to pay date. Multiple sort columns can be provided in a comma delimited format. orderBy=prefix.field+direction,prefix.field+direction
Pagination: To page the result set, you can provide the following reserved query parameters: recordLength and recordOffset
For example, /settlements/search?settlement.payee_id=*&recordLength=100&recordOffset=50 would return 100 records starting at the 51st record in the return record set. If no recordLength parameter is provided the search result maximum value in the mobile service control file will be applied. |
context
|
|
HttpServletRequest
|