βοΈCreate a card
A Visa Business card can be used to purchase any eligible business transactions on Amazon, Ebay, Alibaba, AliExpress, etc
const axios = require('axios');
let data = '{\n "customerId": "d97ca351-966c-47e5-a1fa-b8017515763c",\n "spendingAmount": 2000,\n "reason": "I wan to buy Products on Amazon",\n "places": "AliExpress, Amazon, Etc"\n}';
let config = {
method: 'post',
maxBodyLength: Infinity,
url: 'https://sandbox.pgecom.com/api/v1/business/visa',
headers: { },
data : data
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
sCreate a virtual
Headers
Name
Type
Description
Request Body
Name
Type
Description
Last updated