Get balance

GET https://api.agilizepay.com/get_balance

SUMMARY:

access_token = Access token code generated by authentication

CLIENT_ID = Your client_id can be found within the dashboard.

header
{ 
    'client_id: {CLIENT_ID}',
    'Accept': 'application/json',
    'Authorization': "Bearer {access_token}"
}
🟢 200 - Successfully

Response body

{ 
[
    {
        'wallet': string,
        'amount': number
    }
]
}
🔴400 - Bad request

🔴401 - Unauthorized

🔴500 - Internal server error

Last updated