Increase Account Balance

Specifications

Request

JSON PATHDescriptionFormatSample/ExampleRequired
account_idThe Identifier associated to the AccountUUIDfcd0cecb-90dd-4ae2-879f-d0eda6fbddd4Yes
amountThe amount to be applied to the Accountinteger1000Yes
typeOptional information to be applied. Restricted to 20 charactersstringDebit CardNo
referenceOptional reference for the Account Balance changestringWeekly increaseNo
reference_idOptional Identifier relating to the Account Balance changestringTransfer 20250705No

Example

{
    "account_id": "fcd0cecb-90dd-4ae2-879f-d0eda6fbddd4",
    "amount": ,
    "type": "",
    "reference": "",
    "reference_id": ""
}

Response

Succesful

JSON PATHDescriptionSample/ExampleFormatRequired
previous_account_balanceThe previous balance of the Account.A minus figure indicates a debit balance100stringYes
new_account_balanceThe new Account balance following the request. A minus figure indicates a debit balance200stringYes
previous_available_account_balanceThe previous available balance of the Account. A minus figure indicates a debit balance0stringYes
new_available_balanceThe value that is available to be spent. A minus figure indicates a debit balance100stringYes
trace_idThe Identifier associated with the API15bfc289-de75-4668-bb11-3998aadf226dstringYes

Example

{
    "previous_account_balance": "100",
    "new_account_balance": "200",
    "previous_avaliable_account_balance": "0",     
    "new_avaliable_account_balance": "100",  
    "trace_id": "15bfc289-de75-4668-bb11-3998aadf226d"
}