API Create List Virtual Cards
Last updated
Was this helpful?
Was this helpful?
{
"requestId": "b1e2c3d4-5678-1234-9abc-1234567890ab",
"cardPolicy": "e424ae34-5c56-45c8-882e-98c4325981d3",
"virtualCards": [
{
"virtualCardRequestId": "a1b2c3d4-5678-1234-9abc-1234567890ab",
"cardHolderName": "John Doe"
},
{
"virtualCardRequestId": "b2c3d4e5-6789-2345-9bcd-2345678901bc",
"cardHolderName": "Jane Smith"
}
]
}{
"code": 1,
"state": 2,
"data": {
"requestId": "14453285-93d2-4fef-8a3e-fa6b8a99cf6f",
"merchantCode": "COLRLC",
"createdAt": "2025-06-04T01:15:39.529Z",
"status": "PASSED",
"message": "Please wait while we are processing your request"
},
"message": "Successful",
"neoResponseId": "c3f228b8-fc58-45c2-a01c-e954d1225635"
}curl -X POST "https://{base_url_openapi}/v2/vc/virtual-cards/batch" \
-H "Authorization: Bearer <YOUR_TOKEN>" \
-H "Content-Type: application/json" \
-H "Accept-Language: en" \
-d '{
"requestId": "b1e2c3d4-5678-1234-9abc-1234567890ab",
"cardPolicy": "e424ae34-5c56-45c8-882e-98c4325981d3",
"virtualCards": [
{
"virtualCardRequestId": "a1b2c3d4-5678-1234-9abc-1234567890ab",
"cardHolderName": "John Doe"
},
{
"virtualCardRequestId": "b2c3d4e5-6789-2345-9bcd-2345678901bc",
"cardHolderName": "Jane Smith"
}
]
}'