Wallet Balance
This endpoint allows you get your Squad Account Balance.
info
Environment base URL:
Test: https://sandbox-api-d.squadco.com
Production: https://api-d.squadco.com
Authorization keys are to be passed via Headers as a Bearer token.
Example: Authorization: Bearer sandbox_sk_94f2b798466408ef4d19e848ee1a4d1a3e93f104046f
Please be informed that the wallet balance is in KOBO. (Please note that you can't get wallet balance for Dollar transactions).
GET
https://sandbox-api-d.squadco.com/merchant/balanceThis endpoint allows you get your Squad Wallet Balance. Amount is in KOBO
Parameters
Query
currency_id*
String
It only takes the value 'NGN'. (Please note that you can't get wallet balance for Dollar transactions)
Responses
200:OK
Success{
            "status": 200,
            "success": true,
            "message": "Success",
            "data": {
                "balance": "2367013",
                "currency_id": "NGN",
                "merchant_id": "SBN1EBZEQ8"
            }
}
401:Unathorized
No Authorization{
            "success": false,
            "message": "",
            "data": {}
}
403:Forbidden
Invalid/Wrong API Keys{
            "success": false,
            "message": "Merchant authentication failed",
            "data": {}
}