Adyen · Schema

Balance

Balance schema from Adyen API

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
available integer The remaining amount available for spending.
balance integer The total amount in the balance.
currency string The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance.
reserved integer The amount reserved for payments that have been authorised, but have not been captured yet.
View JSON Schema on GitHub

JSON Schema

notification-webhooks-balance-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/notification-webhooks-balance-schema.json",
  "title": "Balance",
  "description": "Balance schema from Adyen API",
  "properties": {
    "available": {
      "description": "The remaining amount available for spending.",
      "format": "int64",
      "type": "integer"
    },
    "balance": {
      "description": "The total amount in the balance.",
      "format": "int64",
      "type": "integer"
    },
    "currency": {
      "description": "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance.",
      "type": "string"
    },
    "reserved": {
      "description": "The amount reserved for payments that have been authorised, but have not been captured yet.",
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "currency",
    "balance",
    "reserved",
    "available"
  ],
  "type": "object"
}