Explore the new Payment Request API (source).
const request = new PaymentRequest(supportedPaymentMethods, paymentDetails, options);
{
"supportedPaymentMethods": [
{
"supportedMethods": [
"basic-card"
],
"data": {
"supportedNetworks": [],
"supportedTypes": []
}
}
],
"paymentDetails": {
"total": {
"label": "Total",
"amount": {
"currency": "USD",
"value": "1.0"
}
},
"displayItems": []
},
"options": {
"requestPayerName": false,
"requestPayerPhone": false,
"requestPayerEmail": false
}
}