This end point enables the caller to get analytical information based on transaction history for a specified period.
Request Data Description
# | Field Name | Data Type | Max Length / Format | Required | Description |
1 | startDate | Date | YYYY-MM-dd | Yes | This field specify the beginning of your report. The analysis will cover all records between the value specified in this field and the endDate field. |
2 | endDate | Date | YYYY-MM-dd | Yes | This field specified the report end date |
Endpoint
{{baseurl}}/api/v1/request/ils/analysis
Headers:
HTTP Method: POST
Authentication: User Access Token or Client Access Token
Content-Type: application/jsonSample
Request: { "startDate" : "2020-01-01" , "endDate" : "2020-04-01" } |
Sample
Response: {"responseCode": "00", "responseMessage": "Successful", "dateRange": "6-Months", "data": {"totalCount": 9,"totalSum": 2763200, "transactionTypeAnalysisList": [ {"transactionType": "CASH DEPOSIT", "transactionCount": 1, "transactionAmount": 320000}, {"transactionType": "POS WITHDRAWAL", "transactionCount": 2, "transactionAmount": 54000}, {"transactionType": "CASH WITHDRAWAL", "transactionCount": 6, "transactionAmount": 2389200}] }} |