Get Balance

Get Balance

GET /balance

This endpoint enables merchants to retrieve their wallet balance.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <apiKey>

Response

{
    "status": 200, 
    "message": "Balance fetched successfully", 
    "data": "<encrypted string>"
}

Decrypted Resposne:

{
    "status": 200, 
    "message": "Deposit for redeem was successfully", 
    "data": {    
        "id": "f8791ae3-c37f-4d02-b98a-364c1d594848", 
        "from": "example@gmail.com", 
        "receiver": "011:1234567890", 
        "initiatorId": "67979970-c593-4b32-9161-12402fc7f9a3", 
        "requires_multi_sig": false, 
        "total_sigs_required": 1, 
        "amount": "1000", 
        "description": "cNGN Redemption", 
        "createdAt": "2024-10-21T09:18:48.349Z", 
        "updatedAt": "2024-10-21T09:18:48.349Z", 
        "trx_ref": "d0dfe0d1-3eb4-49ea-803c-52da9d03dd9c", 
        "trx_type": "fiat_redeem", 
        "network": "xbn", 
        "asset_type": "wrapped", 
        "asset_symbol": "NGN", 
        "base_trx_hash": null, 
        "extl_trx_hash": null, 
        "explorer_link": null, 
        "status": "pending", 
        "va_deposit_session_id": null, 
        "va_payment_ref": null, 
        "mpc_trx_ref": null, 
        "businessId": "fac93c57-55af-4d73-b3b6-7a135e3a4f29"
    }
}

Last updated