v1

latestOpenAPI 3.0.0ISC2026-07-249501.1 MB
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 -->

⚠️ Try It

To use the Try It feature for this endpoint, you must use the credentials for your Sandbox API user.

<div style="display:none;">

Request parameters

  • endDate
  • startDate

Response parameters

  • amount
  • transactionDate
  • merchantId
</div>
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

amountnumber

The transaction amount for the indicated date.

transactionDatestring

The transaction date.

merchantIdstring

The merchant ID for the transactions.

Example response

[
  {
    "amount": 118.02,
    "transactionDate": "2024-12-01",
    "merchantId": "100039"
  }
]