#HS
1 messages · Page 1 of 1 (latest)
Hi, can you provide the request id here? req_xxx
Hi,
These are the 2 request ids in the most recent order:
req_JsCMZv62Dwa5U0
req_pHgN93lO8wRAQa
Okie, can you share the code how you created PaymentElement to confirm these PI?
Payment Elements was created by passing the following options object.
{
mode: 'payment',
amount: 10000,
currency: 'usd'
}
const elements = stripe.elements(options);
const linkAuthenticationElement = elements.create("linkAuthentication");
const paymentElement = elements.create("payment");
linkAuthenticationElement.mount("#link-authentication-element");
paymentElement.mount("#payment-element");```