ServiceAdapter
ServiceAdapter
  • Service Adapter Developer Hub
  • Getting Started
  • Authentication
  • Standard Request
  • Standard Response
    • Purchase Data Object
    • Response Codes
  • Adapter Transformers
  • Account Balance
  • NOTIFICATIONS API
    • SMS
    • Voice
Powered by GitBook
On this page

Account Balance

Before you can use our API, you are expected to fund your wallet by crediting the virtual account displayed on your dashboard.

Retrieve Balance

GET /business/account/balance

<This endpoint returns your current balance on your wallet>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Response

{
    "status": true,
    "code": "00",
    "message": "Balance successfully retrieved",
    "data": {
        "account_number": "0000000001",
        "account_name": "The Bootup Logistics",
        "currency": "NGN",
        "balance": "936.00",
        "account_type": "REGULAR",
        "overdraw_allowed": false,
        "overdraw_limit": "0.00",
        "liened_amount": "28.00",
        "last_updated": "2024-04-19T09:00:21.000000Z"
    }
}
PreviousAdapter TransformersNextSMS

Last updated 1 year ago