Get_Balance - Tranglo

Get_Balance

Corporate Customers can use this method to check wallet balance.

Definition

GET/api/wallets/{Account_ID}/balance

Sample Request

curl -X POST \
-H "Authorization: Bearer <JWT-token>" \
-d '{
"Account_ID": "123456789012345"
}'

Request Description

Parameter NameRequiredMin/Max LengthTypeRemark
AuthorizationMBearer <jwt-token>String
Account_IDM15/15StringCorporate Customer's Wallet Account ID.

Sample Response

HTTP 200 OK
{
"Account_ID": "123456789012345",
"Currency": "USD",
"Balance": 1000366.99
}

Response Description

ParameterData TypeRequiredDescription
Account_IDStringMUnique identifier for the customer account wallet.
CurrencyCharMCurrency of the customer wallet in ISO 4217 format.
BalanceNumericMThe latest balance of customer wallet.

M = Mandatory, C = Conditional, O = Optional