Adyen · Schema

BalanceMutation

PaymentsFinancial ServicesFintech

Properties

Name Type Description
balance integer The amount in the payment's currency that is debited or credited on the balance accounting register.
currency string The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).
received integer The amount in the payment's currency that is debited or credited on the received accounting register.
reserved integer The amount in the payment's currency that is debited or credited on the reserved accounting register.
View JSON Schema on GitHub

JSON Schema

adyen-balancemutation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BalanceMutation",
  "title": "BalanceMutation",
  "properties": {
    "balance": {
      "x-addedInVersion": "3",
      "description": "The amount in the payment's currency that is debited or credited on the balance accounting register.",
      "format": "int64",
      "type": "integer"
    },
    "currency": {
      "x-addedInVersion": "3",
      "description": "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).",
      "type": "string"
    },
    "received": {
      "x-addedInVersion": "3",
      "description": "The amount in the payment's currency that is debited or credited on the received accounting register.",
      "format": "int64",
      "type": "integer"
    },
    "reserved": {
      "x-addedInVersion": "3",
      "description": "The amount in the payment's currency that is debited or credited on the reserved accounting register.",
      "format": "int64",
      "type": "integer"
    }
  }
}