Hi Team,
I have integrated below JS in our site.
https://sandbox-assets.secure.checkout.visa.com/checkout-widget/resources/js/integration/v1/sdk.js
Able to view the checkout popup and view saved card and address details associted with the login. But the total amount (SGD 11.30) is not getting displayed below Card/Address details. Also instead of "Pay" button, I am seeing "Continue" button.
Below is the sample code used
var myapikey = "xxxxxxxxxxx"; V.init({ apikey : myapikey, settings: { displayName: "My Site", dataLevel: "FULL" }, paymentRequest: { currencyCode: "SGD", subtotal: "11.30" } });
Could you please guide, if we miss something?
Thanks,
SK
Solved! Go to Solution
This worked!!!
var myapikey = "xxxxxxxxxxx"; V.init({ apikey : myapikey, settings: { displayName: "My Site", review: { buttonAction: "Pay" }, dataLevel: "FULL" }, paymentRequest: { currencyCode: "SGD", total: "11.30", } });
Thanks Myself
SK
Glad to hear that !