Issuing Wallet
An Issuing wallet is a pocketbook that serves as the base wallet for all Issuing related operations for your business. The amount balance will always be in kobo (Naira) or cents (USD)
Fund Wallet
This API resource allows you to fund your issuing wallet by passing in your desired funding wallet amount and the currency to the body request API below. On a successful request, a rave payment link is generated where you get to complete the transaction.
Issuing wallet in test mode
You can test the APIs without funding the issuing wallet
API Reference β‘
curl --location --request POST 'https://api.withmono.com/issuing/v1/wallets/fund' \
--data-raw '{"amount":"300000", currency: "usd"}'
{
"status": "success",
"message": "Use generated link to fund wallet",
"data": {
"link": "https://ravemodal-dev.herokuapp.com/v3/hosted/pay/e6d4ecb9fa6c8b3d1e2e"
}
}
Get Wallet
This API resource returns the current Issuing wallet balance for your business which you can fetch via the currency query. This can either be in usd or ngn.
API Reference β‘
curl --location --request GET 'https://api.withmono.com/issuing/v1/wallets?currency=usd'
{
"status": "successful",
"message": "Wallet Fetched Successfully",
"data": {
"currency": "USD",
"balance": 0,
"threshold": {
"value": 0,
"enabled": false
}
}
Updated 26 days ago
Did this page help you?