{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountHolderTransactionListRequest", "title": "AccountHolderTransactionListRequest", "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" ], "type": "object" }