Create a Report
Exact's Reporting API enables a partner to query all data associated with Accounts, Transactions, or Chargebacks within a specified date range.
The example below shows a partner requesting all data related to the Accounts under their organization for the year 2021.
{
"parameters": {
"start": "2021-01-01T00:00:00.000Z",
"end": "2021-12-31T23:59:59.999Z",
"user": "61a78fe82c3156b0945ef135"
},
"expiresAt": "2030-01-01T00:00:00.000Z"
}
This API submission will return a unique reportID response. The reportID will be used to retrieve & download the reporting data in either a JSON or CSV format.
If the dataset is large and requires more time to process the request, a partner can utilize the reports.run event webhook and listen for the report to complete the query.
Updated 3 months ago