Export Customer Account Statement
To export a customer statement, send a GET request to the following endpoint:
GET
/api/Report/v1/ExportCustomerStatement
This API enables the export of customer statements in PDF, CSV, or Excel format, providing access to crucial financial information for both customers and the organization.
Headers
Content-Type*
application/json
Authorization*
Bearer <token>
Request-Reference
{unique-reference}
Query Parameter
accountNumber
string
The customer's account number
financialDateFrom
date
Start date of financial activity
financialDateto
date
End date of financial activity
fileExportFormat
integer
The type of format to use for exporting account statements (e.g., CSV, PDF)
The enumerations are:
1
= Excel
2
= CSV
3
= PDF
Here is an example request and response with a sample payload sent to the endpoint in Curl format.
Last updated