Daily Transactions Summary
For getting daily transactions summary on the merchant application, the getTodayTransactionsSummary method of the library should be called. This function is used to get daily transactions through the library. The function takes DailySummaryListener interfaces as parameters.
Daily Summary Listener
Key of the map is currency value and the result object contains the details of the payments made in that currency.
A sample response in json format
Daily Summary Result Data
Field Names | Descriptions | Sample Values |
---|---|---|
creditAmount | total amount of credit transaction today | 13.00 |
creditMerchantUserBreakdown | detail of mercant user and credit amount of this user | "Fatih Shop" : 10.00 "Ergul Shop" : 3.00 |
debitAmount | total amount of debit transaction today | 8.00 |
debitMerchantUserBreakdown | udetail of mercant user and debit amount of this user | "Fatih Shop" : 5.00 "Ergul Shop" : 3.00 |
Send Daily Summary Report
This function is used to send the daily transaction report to the merchant's defined mail address.
Send Mail Listener
Last updated