Adyen · JSON Structure

Funds Account Holder Transaction List Request Structure

AccountHolderTransactionListRequest schema from Adyen API

Type: object Properties: 3 Required: 1
PaymentsFinancial ServicesFintech

AccountHolderTransactionListRequest is a JSON Structure definition published by Adyen, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

accountHolderCode transactionListsPerAccount transactionStatuses

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/funds-account-holder-transaction-list-request-structure.json",
  "description": "AccountHolderTransactionListRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "accountHolderCode": {
      "description": "The code of the account holder that owns the account(s) of which retrieve the transaction list.",
      "type": "string"
    },
    "transactionListsPerAccount": {
      "description": "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.",
      "items": {
        "$ref": "#/components/schemas/TransactionListForAccount"
      },
      "type": "array"
    },
    "transactionStatuses": {
      "description": "A list of statuses to include in the transaction list. If left blank, all transactions will be included.\n>Permitted values:\n>* `PendingCredit` - a pending balance credit.\n>* `CreditFailed` - a pending credit failure; the balance will not be credited.\n>* `Credited` - a credited balance.\n>* `PendingDebit` - a pending balance debit (e.g., a refund).\n>* `CreditClosed` - a pending credit closed; the balance will not be credited.\n>* `CreditSuspended` - a pending credit closed; the balance will not be credited.\n>* `DebitFailed` - a pending debit failure; the balance will not be debited.\n>* `Debited` - a debited balance (e.g., a refund).\n>* `DebitReversedReceived` - a pending refund reversal.\n>* `DebitedReversed` - a reversed refund.\n>* `ChargebackReceived` - a received chargeback request.\n>* `Chargeback` - a processed chargeback.\n>* `ChargebackReversedReceived` - a pending chargeback reversal.\n>* `ChargebackReversed` - a reversed chargeback.\n>* `Converted` - converted.\n>* `ManualCorrected` - manual booking/adjustment by Adyen.\n>* `Payout` - a payout.\n>* `PayoutReversed` - a reversed payout.\n>* `PendingFundTransfer` - a pending transfer of funds from one account to another.\n>* `FundTransfer` - a transfer of funds from one account to another.",
      "items": {
        "enum": [
          "BalanceNotPaidOutTransfer",
          "BalancePlatformSweep",
          "BalancePlatformSweepReturned",
          "Chargeback",
          "ChargebackCorrection",
          "ChargebackCorrectionReceived",
          "ChargebackReceived",
          "ChargebackReversed",
          "ChargebackReversedCorrection",
          "ChargebackReversedCorrectionReceived",
          "ChargebackReversedReceived",
          "Converted",
          "CreditClosed",
          "CreditFailed",
          "CreditReversed",
          "CreditReversedReceived",
          "CreditSuspended",
          "Credited",
          "DebitFailed",
          "DebitReversedReceived",
          "Debited",
          "DebitedReversed",
          "DepositCorrectionCredited",
          "DepositCorrectionDebited",
          "Fee",
          "FundTransfer",
          "FundTransferReversed",
          "InvoiceDeductionCredited",
          "InvoiceDeductionDebited",
          "ManualCorrected",
          "ManualCorrectionCredited",
          "ManualCorrectionDebited",
          "MerchantPayin",
          "MerchantPayinReversed",
          "Payout",
          "PayoutReversed",
          "PendingCredit",
          "PendingDebit",
          "PendingFundTransfer",
          "ReCredited",
          "ReCreditedReceived",
          "SecondChargeback",
          "SecondChargebackCorrection",
          "SecondChargebackCorrectionReceived",
          "SecondChargebackReceived"
        ],
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "accountHolderCode"
  ],
  "name": "AccountHolderTransactionListRequest"
}