JSON PATH | Description | Format | Sample/Example | Required |
---|
account_id | The Identifier associated to the Account | UUID | fcd0cecb-90dd-4ae2-879f-d0eda6fbddd4 | Yes |
amount | The amount to be debited from the Account | integer | 1000 | Yes |
destination | Destination where the funds are to be sent to | string | Debit Card | No |
reference | Optional reference for the Decrease Account Balance request | string | Return of funds | No |
reference_id | Optional Identifier relating to the Account Balance change | string | Transfer 20250705 | No |
{
"account_id": "fcd0cecb-90dd-4ae2-879f-d0eda6fbddd4",
"amount": ,
"destination": "",
"reference": "",
"reference_id": ""
}
JSON PATH | Description | Sample/Example | Format | Required |
---|
previous_account_balance | The previous balance of the Account. A minus figure indicates a debit balance | 200 | string | Yes |
new_account_balance | The new Account balance following the request. A minus figure indicates a debit balance | 100 | string | Yes |
trace_id | The Identifier associated with the API | 15bfc289-de75-4668-bb11-3998aadf226d | UUID | Yes |
{
"previous_account_balance": "200",
"new_account_balance": "100",
"trace_id": "15bfc289-de75-4668-bb11-3998aadf226d"
}