Add Existing Wallet
Description: Links an existing wallet to a customer BVN in your system
- Sample Request
- Sample Response
Request Parameters
POST {baseUrl}/v1/wallets/add-wallet
curl -X POST
-H "x-Client-Id: your_client_id"
-H "x-hash-key: sha256(clientSecret + payload)"
-H "Content-Type: application/json"
-d '{
"Bvn": "12345678901",
"walletNumber": "9025920886"
}
'
Sample Success Response
POST {baseUrl}/v1/wallets/add-wallet
{
"status": true,
"responseDescription": "Approved or Completed Successfully",
"responseCode": "00",
"result": {
"walletNumber": "9025920886",
"walletName": "John Doe Adebayo",
"macChecksum": "abc123def456ghi789jkl012",
"walletTier": "Tier 1",
"walletBalance": "0.00"
}
}