#priya_code

1 messages ยท Page 1 of 1 (latest)

supple quarryBOT
#

๐Ÿ‘‹ Welcome to your new thread!

โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question. Thank you for your patience!

โฑ๏ธ We automatically close idle threads, which makes them read-only. Make sure you stick around to chat in realtime! If this thread is closed and you have another question you'll need to start a new thread.

๐Ÿ”— This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1214594627903029358

๐Ÿ“ Have more to share? You can add more detail below, including code, screenshots, videos, etc.

novel muralBOT
#

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

fossil gulch
#

Hi again ๐Ÿ‘‹ what details are you trying to gather, and at what point during your flow? (So I know where in my test flow to look)

agile sparrow
#

While creating manual payment method as below

// Create the PaymentMethod using the details collected by the Payment Element
const {error, paymentMethod} = await stripe.createPaymentMethod({
elements,
params: {
billing_details: {
name: 'Jenny Rosen',
}
}
});

I need to send the collected details to the createPaymentMethod function

#

I am not sure how to get that info

fossil gulch
#

What details? You're passing in your elements instance there, which contains the information. You don't need to parse the information from the Payment Element.

agile sparrow
#

okay

#

That make sense

#

Thank You