🚀 Card Payment is live! Learn more
curl --request POST \
--url https://nini.monieswitch.com/card/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data null
{
"status": true,
"message": "Batch successfully created",
"data": {
"id": "cfec027f-1805-4da6-a99b-3c86ee36298a",
"type": "PHYSICAL",
"scheme": "VERVE",
"walletIds": [
"341f8315-ff75-4ea0-8268-bd2a23141e6a",
"341f8315-ff75-4ea0-8268-bd2a23141e6b"
],
"status": "PENDING",
"validWalletIds": [
"341f8315-ff75-4ea0-8268-bd2a23141e6a"
],
"invalidWalletIds": [
{
"walletId": "341f8315-ff75-4ea0-8268-bd2a23141e6b",
"reason": "Wallet not found"
}
],
"batchReference": "WdfyZwAaO1gcHYDyAc4lYIawvMInR3PbwV8H"
}
}
curl --request POST \
--url https://nini.monieswitch.com/card/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data null
{
"status": true,
"message": "Batch successfully created",
"data": {
"id": "cfec027f-1805-4da6-a99b-3c86ee36298a",
"type": "PHYSICAL",
"scheme": "VERVE",
"walletIds": [
"341f8315-ff75-4ea0-8268-bd2a23141e6a",
"341f8315-ff75-4ea0-8268-bd2a23141e6b"
],
"status": "PENDING",
"validWalletIds": [
"341f8315-ff75-4ea0-8268-bd2a23141e6a"
],
"invalidWalletIds": [
{
"walletId": "341f8315-ff75-4ea0-8268-bd2a23141e6b",
"reason": "Wallet not found"
}
],
"batchReference": "WdfyZwAaO1gcHYDyAc4lYIawvMInR3PbwV8H"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Create Batch Cards - Successful
The response is of type object
.