Adyen · Schema

AccountTransactionList

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountCode string The code of the account.
hasNextPage boolean Indicates whether there is a next page of transactions available.
transactions array The list of transactions.
View JSON Schema on GitHub

JSON Schema

adyen-accounttransactionlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountTransactionList",
  "title": "AccountTransactionList",
  "properties": {
    "accountCode": {
      "description": "The code of the account.",
      "type": "string"
    },
    "hasNextPage": {
      "description": "Indicates whether there is a next page of transactions available.",
      "type": "boolean"
    },
    "transactions": {
      "description": "The list of transactions.",
      "items": {
        "$ref": "#/components/schemas/Transaction"
      },
      "type": "array"
    }
  },
  "type": "object"
}