Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
🚀 Card Payment is live! Learn more
curl --request GET \
--url https://nini.monieswitch.com/wallet/merchant \
--header 'Authorization: Bearer <token>'
{
"status": true,
"data": {
"wallet": {
"id": "d68b7371-6709-4247-99b3-142e3130aa69",
"bankCode": "999270",
"bankName": "Xpress Wallet",
"accountName": "Neyosoft",
"accountNumber": "4409794005",
"bookedBalance": 14985,
"availableBalance": 14985,
"createdAt": "2024-07-03T14:46:34.178Z",
"totalChildAccounts": 2,
"totalChildAccountBalance": 0,
"totalBalance": 14985
}
}
}
curl --request GET \
--url https://nini.monieswitch.com/wallet/merchant \
--header 'Authorization: Bearer <token>'
{
"status": true,
"data": {
"wallet": {
"id": "d68b7371-6709-4247-99b3-142e3130aa69",
"bankCode": "999270",
"bankName": "Xpress Wallet",
"accountName": "Neyosoft",
"accountNumber": "4409794005",
"bookedBalance": 14985,
"availableBalance": 14985,
"createdAt": "2024-07-03T14:46:34.178Z",
"totalChildAccounts": 2,
"totalChildAccountBalance": 0,
"totalBalance": 14985
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.