#HS

1 messages · Page 1 of 1 (latest)

subtle helmBOT
sharp hornet
#

Hi, can you provide the request id here? req_xxx

dreamy jewel
#

Hi,

These are the 2 request ids in the most recent order:
req_JsCMZv62Dwa5U0
req_pHgN93lO8wRAQa

sharp hornet
#

Okie, can you share the code how you created PaymentElement to confirm these PI?

dreamy jewel
#

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");```