Adyen · Schema

Balance

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.
pending integer The amount pending to be paid out but not yet available in 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

adyen-balance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Balance",
  "title": "Balance",
  "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"
    },
    "pending": {
      "description": "The amount pending to be paid out but not yet available in the balance.",
      "format": "int64",
      "type": "integer"
    },
    "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"
}