get
https://partner.gupshup.io/partner/app//wallet/balance
Use this API to retrieve the wallet balance details for your partner application. This endpoint provides current balance, currency, and overdraft limit information for billing and financial monitoring.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
- App must belong to authenticated user
- Rate limit: 10 requests per second
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
{
"status": "success",
"walletResponse": {
"currency": "USD",
"currentBalance": ***.**,
"overDraftLimit": 0
}
}