get https://partner.gupshup.io/partner/app//wallet/balance
Use this API to fetch your wallet balance
Parameters
Parameters | Value | Description |
---|---|---|
Authorization | {{PARTNER_APP_TOKEN}} | Access Token for the application |
appId | {{APP_ID}} | Unique Identifier for Gupshup App |
Sample Request
curl --location --request GET 'https://partner.gupshup.io/partner/app/{{APP_ID}}/wallet/balance' \
--header 'Authorization: {{PARTNER_APP_TOKEN}}'
Sample Response
{
"walletResponse": {
"currency": "USD",
"currentBalance": ***.****,
"overDraftLimit": 0
}
}