Adyen · Schema

PaginatedBalanceAccountsResponse

PaginatedBalanceAccountsResponse schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
balanceAccounts array List of balance accounts.
hasNext boolean Indicates whether there are more items on the next page.
hasPrevious boolean Indicates whether there are more items on the previous page.
View JSON Schema on GitHub

JSON Schema

configuration-paginated-balance-accounts-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-paginated-balance-accounts-response-schema.json",
  "title": "PaginatedBalanceAccountsResponse",
  "description": "PaginatedBalanceAccountsResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "balanceAccounts": {
      "description": "List of balance accounts.",
      "items": {
        "$ref": "#/components/schemas/BalanceAccountBase"
      },
      "type": "array"
    },
    "hasNext": {
      "description": "Indicates whether there are more items on the next page.",
      "type": "boolean"
    },
    "hasPrevious": {
      "description": "Indicates whether there are more items on the previous page.",
      "type": "boolean"
    }
  },
  "required": [
    "balanceAccounts",
    "hasPrevious",
    "hasNext"
  ]
}