#blagi.connecto
1 messages · Page 1 of 1 (latest)
Hi! Let me help you with this.
Could you please share the Request ID req_xxx? https://support.stripe.com/questions/finding-the-id-for-an-api-request
How are you creating the Payment Element?
Could you please share the code?
You will need to set capture_method: "manual", there too
const options = {
mode: 'payment',
amount: amount,
currency: 'eur',
};
elements = stripe.elements(options);
const paymentElementOptions = {
layout: "tabs",
fields: {
billingDetails: {
address: {
country: 'never',
}
}
}
};
const paymentElement = elements.create("payment", paymentElementOptions);
paymentElement.mount(config.payment_element_id);
I was searching for capture_method parameter in element JS api, but didn't find it.
I added
I added capture_method: manual, to options,
Not getting that error but don't get to that point after authorization. Have to check what's going on.
Thanks Vanya for now.