Wallet

Scale-up your business with real-time wallet updates. Business is easier when you see the numbers moving.

This is your wallet that houses all your funds and revenue. The amount available in your wallet at any time can be used for product purchases for your customers. It can also be withdrawn at any time using a single endpoint.

Fund Your Wallet

Top up your wallet balance straight from your bank account or using your card.

POST https://api.mycover.ai/v1/wallet/fund

Request Body

Name
Type
Description

paymentReference*

string

This is the reference code to identify the funding transaction.

amount*

number

This is the amount you want to add to your wallet

{
   "responseCode":1,
   "responseText":"Funding Successful!",
   "data":{
      "response":{
         "id":"11b1c44a-d000-4b54-aac4-197e8aed70cf",
         "wallet_id":"9c686a40-fc7b-4074-9212-ffb25d9234e8",
         "wallet_owner_id":"76d5970a-d46b-43df-beb3-8f3117b7a60f",
         "customer_id":null,
         "product_id":null,
         "wallet_owner_type":"distributor",
         "type":"in",
         "source":"funding",
         "amount":50000,
         "balance_before_transaction":385310,
         "balance_after_transaction":"435310.00",
         "created_at":"2022-03-10T16:47:14.385Z",
         "updated_at":"2022-03-10T16:47:14.385Z"
      }
   }
}

Get Wallet Balance

Here’s where you see the result of all your efforts. Connect this endpoint to see the total sum of all funding and commissions

GET https://api.mycover.ai/v1/wallet/balance

Get Wallet Transactions

Get a list of all the transactions you’ve done in your wallet. This includes your commissions, funding and withdrawals.

GET https://api.mycover.ai/v1/wallet/transactions

Query Parameters

Name
Type
Description

page

string

Page number of the response

limit

string

Number of records to return at once

Get Recent Transactions

Get a list of all your recent transactions from your wallet.

GET https://api.mycover.ai/v1/wallet/recent-transactions

Last updated

Was this helpful?