#suleymanturac_code

1 messages ¡ Page 1 of 1 (latest)

bitter sailBOT
#

👋 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/1215061002224144384

📝 Have more to share? You can add more detail below, including code, screenshots, videos, etc.

north helmBOT
#

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.

upper heath
#

hi

#

am i passing us_bank_account the way its not supposed to?

gilded anvil
#

Hi, how are you passing that? Can you share the request id with me? From this 'StripeInvalidRequestError: Invalid array' it looks like there is an issue on how you're passing it.

upper heath
#

const paymentIntent = await stripe.paymentIntents.create({
amount: cost,
currency: "usd",
//confirm: true,
payment_method_types:{
type:'us_bank_account'},
automatic_payment_methods: {
enabled: false,
},
payment_method_configuration:
'pmc_1OYuV7Hc8lrNRlRwcFUpQu55'
,

//confirmation_method: 'manual',

});

#

this is my payment intent

#

I also tried with payment_method_types:'us_bank_account'

gilded anvil
#

You likely want payment_method_types: ['us_bank_account'] instead. Can you try?

upper heath
#

worked perfect

#

thank you very much