Cards Issuance
This endpoint is used to issue a new card for a customer after creating card account for the user using the create card account endpoint.
Headers
Name
Type
Description
Request Body
Name
Type
Description
curl --location '{{base_url}}/business/vcard-issuance' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer SECRET_KEY' \
--data '{
"currency": "USD",
"trackingid": "9239293",
"cardbrand": "Mastercard",
"amount": 5
}'const axios = require('axios');
let data = JSON.stringify({
"currency": "USD",
"trackingid": "9239293",
"cardbrand": "Mastercard",
"amount": 5
});
let config = {
method: 'post',
maxBodyLength: Infinity,
url: '{{base_url}}/business/vcard-issuance'
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer SECRET_KEY'
},
data : data
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Sample response
Last updated
