🚀 Card Payment is live! Learn more
curl --request POST \
--url https://nini.monieswitch.com/wallet/disable \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"amount": 100,
"pin": "1234",
"narration": "Testing",
"metadata": {
"Key": "value"
},
"walletId": "53341293-eb2f-4510-8ebc-bad35ad2bd72"
}'
{
"status": true,
"message": "Wallet successfully debitted.",
"data": {
"paidAt": "2024-07-22T03:46:45+01:00",
"reference": "IMgHGmAslVklpumH8pdtzj8J7jrhovZDGtA5",
"totalAmount": 100,
"charges": 0,
"status": "SUCCESS",
"amount": 100,
"merchantId": "1f18305f-851a-4266-bdc6-6fc1525928cf",
"walletId": "53341293-eb2f-4510-8ebc-bad35ad2bd72",
"narration": "Testing",
"customerMetadata": {
"Key": "value"
},
"originatorBankName": "Xpress Wallet",
"originatorBankCode": "999270",
"originatorAccountName": "Ogundeko Ridwan",
"originatorAccountNumber": "4479274634",
"beneficiaryBankCode": "999270",
"beneficiaryBankName": "Xpress Wallet",
"beneficiaryAccountName": "Neyosoft",
"beneficiaryAccountNumber": "4409794005",
"description": "₦100.00 debitted from Ogundeko Ridwan",
"transactionId": "f024b9f9-bab2-4002-b93e-b43348e48881"
}
}
curl --request POST \
--url https://nini.monieswitch.com/wallet/disable \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"amount": 100,
"pin": "1234",
"narration": "Testing",
"metadata": {
"Key": "value"
},
"walletId": "53341293-eb2f-4510-8ebc-bad35ad2bd72"
}'
{
"status": true,
"message": "Wallet successfully debitted.",
"data": {
"paidAt": "2024-07-22T03:46:45+01:00",
"reference": "IMgHGmAslVklpumH8pdtzj8J7jrhovZDGtA5",
"totalAmount": 100,
"charges": 0,
"status": "SUCCESS",
"amount": 100,
"merchantId": "1f18305f-851a-4266-bdc6-6fc1525928cf",
"walletId": "53341293-eb2f-4510-8ebc-bad35ad2bd72",
"narration": "Testing",
"customerMetadata": {
"Key": "value"
},
"originatorBankName": "Xpress Wallet",
"originatorBankCode": "999270",
"originatorAccountName": "Ogundeko Ridwan",
"originatorAccountNumber": "4479274634",
"beneficiaryBankCode": "999270",
"beneficiaryBankName": "Xpress Wallet",
"beneficiaryAccountName": "Neyosoft",
"beneficiaryAccountNumber": "4409794005",
"description": "₦100.00 debitted from Ogundeko Ridwan",
"transactionId": "f024b9f9-bab2-4002-b93e-b43348e48881"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Debit Wallet
The response is of type object
.