🚀 Card Payment is live! Learn more
curl --request GET \
--url https://nini.monieswitch.com/card/batch/details \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'
{
"status": true,
"message": "Operation is successful",
"data": {
"id": "cfec027f-1805-4da6-a99b-3c86ee36298a",
"status": "PENDING",
"scheme": "VERVE",
"type": "PHYSICAL",
"reason": null,
"batchReference": "WdfyZwAaO1gcHYDyAc4lYIawvMInR3PbwV8H",
"walletIds": [
"341f8315-ff75-4ea0-8268-bd2a23141e6a",
"341f8315-ff75-4ea0-8268-bd2a23141e6b"
],
"validWalletIds": [
"341f8315-ff75-4ea0-8268-bd2a23141e6a"
],
"invalidWalletIds": [
{
"walletId": "341f8315-ff75-4ea0-8268-bd2a23141e6b",
"reason": "Wallet not found"
}
],
"createdAt": "2025-09-01T00:07:34.789Z",
"updatedAt": "2025-09-01T00:07:34.789Z",
"merchant": {
"id": "3aed8fe9-2c60-48fe-bea4-71ea8c8f3c84",
"businessName": "Kimpembe"
},
"wallets": [
{
"id": "341f8315-ff75-4ea0-8268-bd2a23141e6a",
"accountName": "POS Terminal 04",
"accountNumber": "4488450968"
}
]
}
}
curl --request GET \
--url https://nini.monieswitch.com/card/batch/details \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'
{
"status": true,
"message": "Operation is successful",
"data": {
"id": "cfec027f-1805-4da6-a99b-3c86ee36298a",
"status": "PENDING",
"scheme": "VERVE",
"type": "PHYSICAL",
"reason": null,
"batchReference": "WdfyZwAaO1gcHYDyAc4lYIawvMInR3PbwV8H",
"walletIds": [
"341f8315-ff75-4ea0-8268-bd2a23141e6a",
"341f8315-ff75-4ea0-8268-bd2a23141e6b"
],
"validWalletIds": [
"341f8315-ff75-4ea0-8268-bd2a23141e6a"
],
"invalidWalletIds": [
{
"walletId": "341f8315-ff75-4ea0-8268-bd2a23141e6b",
"reason": "Wallet not found"
}
],
"createdAt": "2025-09-01T00:07:34.789Z",
"updatedAt": "2025-09-01T00:07:34.789Z",
"merchant": {
"id": "3aed8fe9-2c60-48fe-bea4-71ea8c8f3c84",
"businessName": "Kimpembe"
},
"wallets": [
{
"id": "341f8315-ff75-4ea0-8268-bd2a23141e6a",
"accountName": "POS Terminal 04",
"accountNumber": "4488450968"
}
]
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Batch Details - Successful
The response is of type object
.