POST /accountHolderTransactionList

Returns a list of transactions for an account holder's accounts. You can specify the accounts and transaction statuses to be included on the list. The call returns a maximum of 50 transactions for each account. To retrieve all transactions, you must make another call with the 'page' value incremented. Transactions are listed in chronological order, with the most recent transaction first.

Servers

Request headers

Name Type Required Description
Content-Type String Yes The media type of the request body.

Default value: "application/json"

Request body fields

Name Type Required Description
transactionStatuses[] Array No

A list of statuses to include in the transaction list. If left blank, all transactions will be included.

Permitted values:

  • PendingCredit - a pending balance credit.
  • CreditFailed - a pending credit failure; the balance will not be credited.
  • Credited - a credited balance.
  • PendingDebit - a pending balance debit (e.g., a refund).
  • CreditClosed - a pending credit closed; the balance will not be credited.
  • CreditSuspended - a pending credit closed; the balance will not be credited.
  • DebitFailed - a pending debit failure; the balance will not be debited.
  • Debited - a debited balance (e.g., a refund).
  • DebitReversedReceived - a pending refund reversal.
  • DebitedReversed - a reversed refund.
  • ChargebackReceived - a received chargeback request.
  • Chargeback - a processed chargeback.
  • ChargebackReversedReceived - a pending chargeback reversal.
  • ChargebackReversed - a reversed chargeback.
  • Converted - converted.
  • ManualCorrected - manual booking/adjustment by Adyen.
  • Payout - a payout.
  • PayoutReversed - a reversed payout.
  • PendingFundTransfer - a pending transfer of funds from one account to another.
  • FundTransfer - a transfer of funds from one account to another.
transactionListsPerAccount[] Array No

A list of accounts to include in the transaction list. If left blank, the last fifty (50) transactions for all accounts of the account holder will be included.

transactionListsPerAccount[].page Integer Yes

The page of transactions to retrieve. Each page lists fifty (50) transactions. The most recent transactions are included on page 1.

transactionListsPerAccount[].accountCode String Yes

The account for which to retrieve the transactions.

accountHolderCode String Yes

The code of the account holder that owns the account(s) of which retrieve the transaction list.

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.