Reports
Get platform performance report (total volume and total_amount) for the date range and transaction state. Queries transaction table for stats, so could be slow for large date ranges
get/v1/report/performance-report-legacy
Query parameters
from_datestring
From date of transactions to be searched (this date is inclusive).
to_datestring
To date of transactions to be searched (this date is exclusive).
state'UNDEFINED' | 'STARTED' | 'CAPTURABLE' | 'FAILED_REJECTED' | 'FAILED_EXPIRED' | 'FAILED_CANCELLED' | 'CANCELLED' | 'CREATED' | 'SUBMITTED' | 'SUCCESS' | 'ERROR' | 'ERROR_GATEWAY' | 'NEEDS_RESPONSE' | 'UNDER_REVIEW' | 'LOST' | 'WON'
Transaction state
Response
OK
Example response
{
"average_amount": 1000,
"total_amount": 1000,
"total_volume": 1
}