Credit a customer wallet
POST /wallet/credit
Transfers funds from your merchant settlement wallet to a customer wallet. The merchant wallet is debited the transfer amount plus any applicable wallet-to-wallet transfer fees.
The customer wallet must be
ACTIVE and must not have post-no-credit (PNC) mode enabled. Credits are also subject to the customer’s tier maximum balance limit — if the credit would push the wallet over its tier cap, the request is rejected.Request
Bearer token.
The UUID of the customer whose wallet you are crediting.
Amount to credit, in kobo. Must be greater than 0.
Your unique transaction reference. If omitted, one is auto-generated. Minimum 10 characters. Duplicate references are rejected.
Arbitrary key-value data attached to the transaction. Returned in webhook payloads.
Response
true on success."Transaction successfully completed." or "Transaction successfully submitted for approval." (for web-initiated requests that require maker-checker approval).Present on successful API-initiated transactions.
Examples
Response
Debit a customer wallet
POST /wallet/debit
Withdraws funds from a customer wallet and credits them to your merchant settlement wallet. The net amount received by the merchant is the debited amount minus any applicable transfer fees.
Request
Bearer token.
The UUID of the customer whose wallet you are debiting.
Amount to debit, in kobo. Must be greater than 0.
Your unique transaction reference. Minimum 10 characters. Duplicate references are rejected.
Arbitrary key-value data attached to the transaction.
Response
true on success."Transaction successfully completed" on success.Examples
Response
Get merchant wallet balances
GET /wallet/balance
Returns the total combined balance across all customer wallets under your merchant account. This is the sum of availableBalance for every customer wallet.
Request
Bearer token.
Response
true on success.Examples
Response
Get settlement balance
GET /wallet/settlement-balance
Returns the total unsettled balance owed to customers — the difference between bookedBalance and availableBalance across all customer wallets. Use this before calling POST /wallet/settle-customer-balance to understand how much you need to fund.
Request
Bearer token. Requires
MANAGE_BALANCE_SETTLEMENT permission.Response
true on success.Total pending settlement amount in kobo.
Examples
Response
Settle customer balances
POST /wallet/settle-customer-balance
Transfers funds from your merchant settlement wallet to cover the outstanding balances of all customers who have a bookedBalance greater than their availableBalance. Settlement is processed smallest-balance-first until your merchant wallet is exhausted.
Request
Bearer token. Requires
MANAGE_BALANCE_SETTLEMENT permission.Response
true on success."Your customers wallet has been settled"Examples
Response
Error responses
| HTTP Status | Description |
|---|---|
400 | Reference already exists |
400 | Insufficient balance in merchant or customer wallet |
400 | Customer wallet is inactive or not found |
400 | Post-no-credit is enabled on beneficiary wallet |
400 | Daily transaction limit exceeded |
400 | Tier max balance would be exceeded |
400 | Customer debit not enabled for this merchant |
401 | Missing or invalid authentication token |
403 | Insufficient permissions |
400 Insufficient Balance
400 Post-No-Credit Enabled
