Sub-Accounts Wallet

This endpoint helps get the balance a sub-account created under your account.

POST https://api.oneappgo.com/v1/business/subaccount-wallet

Headers

Name
Type
Description

authorization*

String

SECRET_KEY

Request Body

Name
Type
Description

trackingid

string

customer trancking id store during creation or from get subaccount endpoint

Take a look at how you might do this:

curl --location 'https://api.oneappgo.com/v1/business/subaccount-wallet' \
--header 'Authorization: Bearer SECRET_KEY' \

Sample Response

{
  "status": true,
  "msg": "Retrieved",
  "balance": "260400.00",
  "ledgerbal": "0.00",
  "usdbal": "0.00",
  "usdledgerbal": "0.00"
}

Last updated

Was this helpful?