Transactions
View transactions summary
Returns a summary (total transaction amount, month, and merchant ID) for the month's transactions between the specified start and end dates for each merchant account associated with the API user.
<!-- theme: warning --><div style="display:none;">⚠️ Try It
To use the Try It feature for this endpoint, you must use the credentials for your Sandbox API user.
Request parameters
- endDate
- startDate
Response parameters
- amount
- transactionDate
- merchantId
get/transaction/v3/transactionsSummary
Query parameters
startDatestring required
Example:2024-12-02
The first date to use for getting transaction summaries. Format: YYYY-MM-DD
endDatestring required
Example:2024-12-14
The last date to use for getting transaction summaries. Format: YYYY-MM-DD
Response
Success
Example response
[
{
"amount": 118.02,
"transactionDate": "2024-12-01",
"merchantId": "100039"
}
]