Reports
Get platform performance report (total volume and total_amount) for the date range and transaction state. Queries transaction_summary table for stats
get/v1/report/performance-report
Query parameters
from_datestring
From date of the transaction summary to be searched (this date is inclusive). Required when to_date is provided
to_datestring
To date of the transaction summary to be searched (this date is inclusive). Required when from_date is provided
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
}