🚀 Card Payment is live! Learn more
curl --request POST \
--url https://nini.monieswitch.com/branch/store/credit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"pin": "2222",
"amount": 1000,
"storeId": "9ab67f41-10c9-4f52-adfc-31f460980966",
"narration": "First terminal transfer"
}'
{
"status": true,
"message": "Wallet transfer successfully completed.",
"data": {
"paidAt": "2025-01-03T18:08:34.362Z",
"reference": "JaK8is7ovVdJC6qwpVpqFslZr7EcAx35MdtH",
"totalAmount": 1000,
"charges": 0,
"status": "SUCCESS",
"amount": 1000,
"category": "CREDIT_STORE",
"merchantId": "bb80715c-dcbc-460c-a8e4-203b63b03fce",
"walletId": "cd91b52e-e9b0-4dd7-b2ff-eaa2076614c6",
"storeId": "9ab67f41-10c9-4f52-adfc-31f460980966",
"storeName": "Lambe Shop",
"toWalletId": "1e04b3a0-eabd-48b4-b5ba-91ec1d15a103",
"narration": "First terminal transfer",
"fromWalletId": "cd91b52e-e9b0-4dd7-b2ff-eaa2076614c6",
"beneficiaryBankName": "Xpress Wallet",
"beneficiaryBankCode": "999270",
"providerWalletId": "5db4ab22-97cf-4f44-8c21-6d43f736fdbb",
"beneficiaryAccountNumber": "4478164596",
"beneficiaryAccountName": "Neyosoft/Lambe Shop",
"originatorBankCode": "999270",
"originatorBankName": "Xpress Wallet",
"originatorAccountName": "Nwoko",
"originatorAccountNumber": "4439862547",
"description": "₦1,000.00 transferred to store(Lambe Shop)",
"transactionId": "e5d7e3ed-3388-45ea-9b72-86d32adb77c7"
}
}
curl --request POST \
--url https://nini.monieswitch.com/branch/store/credit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"pin": "2222",
"amount": 1000,
"storeId": "9ab67f41-10c9-4f52-adfc-31f460980966",
"narration": "First terminal transfer"
}'
{
"status": true,
"message": "Wallet transfer successfully completed.",
"data": {
"paidAt": "2025-01-03T18:08:34.362Z",
"reference": "JaK8is7ovVdJC6qwpVpqFslZr7EcAx35MdtH",
"totalAmount": 1000,
"charges": 0,
"status": "SUCCESS",
"amount": 1000,
"category": "CREDIT_STORE",
"merchantId": "bb80715c-dcbc-460c-a8e4-203b63b03fce",
"walletId": "cd91b52e-e9b0-4dd7-b2ff-eaa2076614c6",
"storeId": "9ab67f41-10c9-4f52-adfc-31f460980966",
"storeName": "Lambe Shop",
"toWalletId": "1e04b3a0-eabd-48b4-b5ba-91ec1d15a103",
"narration": "First terminal transfer",
"fromWalletId": "cd91b52e-e9b0-4dd7-b2ff-eaa2076614c6",
"beneficiaryBankName": "Xpress Wallet",
"beneficiaryBankCode": "999270",
"providerWalletId": "5db4ab22-97cf-4f44-8c21-6d43f736fdbb",
"beneficiaryAccountNumber": "4478164596",
"beneficiaryAccountName": "Neyosoft/Lambe Shop",
"originatorBankCode": "999270",
"originatorBankName": "Xpress Wallet",
"originatorAccountName": "Nwoko",
"originatorAccountNumber": "4439862547",
"description": "₦1,000.00 transferred to store(Lambe Shop)",
"transactionId": "e5d7e3ed-3388-45ea-9b72-86d32adb77c7"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Credit Store - Successful
The response is of type object
.