Wallet Balance

Check wallet balance. See below an example of the payload that will be expected by the server.

Balance

POST https://sandbox.temboplus.com/tembo/v1/wallet/balance

Check wallet balance

Headers

Name
Type
Description

x-account-id*

string

Partner account id

x-secret-key*

string

Partner secret key

x-request-id*

string

Id identifying this request

Request Body

Name
Type
Description

accountNo*

string

Account number of the wallet to retrieve balance

{
   "availableBalance":10000,
   "currentBalance":10000,
   "accountNo":"8000837333",
   "accountStatus":"ACTIVE",
   "accountName":"JAMES JOHN"
}
curl --request POST \
--url https://sandbox.temboplus.com/tembo/v1/wallet/balance \
--header 'content-type: application/json' \
--header 'x-account-id: ff6IfxxVceIMM6oFAc9Zig' \
--header 'x-secret-key: HYX5X4is3a4bnJJo4lXM936bFD6B8iMeAtXijNvHXMI==' \
--header 'x-request-id: 546d7a200cd8cb45d8ac' \ 
--data '{
   "accountNo":"70089773"
}'

Last updated