POST
/
card
/
batch
Create Batch Cards
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"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json · object

Response

200 - application/json

Create Batch Cards - Successful

The response is of type object.