Metrics
API App's wallet balance
GET
/
api
/
metrics
/
wallet
Authorization
curl --request GET \
--url https://api.senddotssandbox.com/api/api/metrics/wallet \
--header 'Authorization: <authorization>'
{
"success": true,
"wallet": {
"amount": 0,
"withdrawable_amount": 0
}
}
Authorizations
Authorizationheaderrequired
string
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200 - application/json
success
boolean
wallet
object
curl --request GET \
--url https://api.senddotssandbox.com/api/api/metrics/wallet \
--header 'Authorization: <authorization>'
{
"success": true,
"wallet": {
"amount": 0,
"withdrawable_amount": 0
}
}