Adyen · Schema

TransactionListForAccount

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountCode string The account for which to retrieve the transactions.
page integer The page of transactions to retrieve. Each page lists fifty (50) transactions. The most recent transactions are included on page 1.
View JSON Schema on GitHub

JSON Schema

adyen-transactionlistforaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransactionListForAccount",
  "title": "TransactionListForAccount",
  "properties": {
    "accountCode": {
      "description": "The account for which to retrieve the transactions.",
      "type": "string"
    },
    "page": {
      "description": "The page of transactions to retrieve.\nEach page lists fifty (50) transactions.  The most recent transactions are included on page 1.",
      "format": "int32",
      "type": "integer"
    }
  },
  "required": [
    "accountCode",
    "page"
  ],
  "type": "object"
}