v1
latestOpenAPI 3.0.02026-07-242035712.0 MBCard V2
Create Bulk Blank Cards
This web service allows to create blank cards in bulk. Blank card means a card with no account and no customer linked to it. Bank will use this api to create bulk cards in advance and print it through manufacturer.
Customer when requires an instant card, bank will create account, customer and link to blank card.
For linking blank card with new customer, use below api
/pws/v2/pws_link_card_acc
Version 2 create bulk cards api support idempotency:
- If the previous api request was a success and the client sends the same api_unique_identifier, then the previous response will be returned.
- If the previous request fails and the client send the sameapi_unique_identifier, then the new create bulk card request will be processed with the incoming API parameters.
post/pws/v2/pws_create_bulk_cards/
Request body
Example request
{
"api_call_unique_identifier": "438574845790657485",
"client_id": 760131,
"crd_prdct_id": 67,
"status_nwk": 1000,
"total_cards": 50,
"tok_flags": "00000000000000000000000000000000",
"exp_date": "2025-01-01 00:00:00",
"client_card_ref": "client choice",
"image_name": "paymentology",
"emboss_name": "Akshay Patel",
"auth_type": "0",
"manufacturer_detail": {
"card_manuf_id": 12,
"atm_lang": "01",
"carrier_type": "1",
"carrier_insrt1": 1,
"carrier_insrt2": 1,
"carrier_lang": "ENG",
"envelope_ref": 1,
"perso_fields": "11111"
},
"delivery_detail": {
"del_title": "Mr",
"del_fname": "Akshay",
"del_sname": "Patel",
"del_addr1": "London",
"del_addr2": "Nadipur",
"del_city": "Pokhara",
"del_country": "Nepal",
"del_email": "akshay@paymentology.com",
"del_mobile": "+9779846545555",
"del_method": 1,
"del_region": "ENG"
}
}Response
Successful Response
Example response
{
"header": {
"error_desc": "success"
},
"body": [
{
"expiry": "03/21",
"token": 788193393,
"last_four_digit_number": "0082"
}
]
}