Adyen · Schema
BalanceMutation
BalanceMutation schema from Adyen API
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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/transfer-webhooks-balance-mutation-schema.json",
"title": "BalanceMutation",
"description": "BalanceMutation schema from Adyen API",
"type": "object",
"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"
}
}
}