List transactions
Lists detailed history of all transactions associated with the merchant profile.
Path parameters
Merchant code of the account whose transaction history should be listed.
Query parameters
Retrieves the transaction resource with the specified transaction code.
Specifies the order in which the returned results are displayed.
Specifies the maximum number of results per page. Value must be a positive integer and if not specified, will return 10 results.
Filters the returned results by user email.
[ "merchant@example.com" ]
Filters the returned results by the specified list of final statuses of the transactions.
Filters the returned results by the specified list of payment types used for the transactions.
Filters the returned results by the specified list of entry modes.
Filters the returned results by the specified list of transaction types.
Filters the results by the latest modification time of resources and returns only transactions that are modified at or after the specified timestamp (in ISO8601 format).
Filters the results by the creation time of resources and returns only transactions that are created before the specified timestamp (in ISO8601 format).
Filters the results by the reference ID of transaction events and returns only transactions with events whose IDs are smaller than the specified value. This parameters supersedes the newest_time parameter (if both are provided in the request).
Filters the results by the creation time of resources and returns only transactions that are created at or after the specified timestamp (in ISO8601 format).
Filters the results by the reference ID of transaction events and returns only transactions with events whose IDs are greater than the specified value. This parameters supersedes the oldest_time parameter (if both are provided in the request).
Response
Returns a page of transaction history items.
Example response
{
"items": [
{
"transaction_code": "TEENSK4W2K",
"amount": 10.1,
"currency": "EUR",
"timestamp": "2020-02-29T10:56:56.876Z",
"status": "SUCCESSFUL",
"payment_type": "ECOM",
"installments_count": 1,
"merchant_code": "MH4H92C7",
"transaction_id": "410fc44a-5956-44e1-b5cc-19c6f8d727a4",
"user": "merchant@example.com",
"type": "PAYMENT",
"payout_date": "2019-08-28",
"payout_type": "BANK_ACCOUNT",
"refunded_amount": 0
}
],
"links": []
}