#munir-hassan_code
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can start a new thread if you have another question.
๐ 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/1251101880856088608
๐ Have more to share? Add details, code, screenshots, videos, etc. below.
How can create a bank transfer options from front end and use that to create a subscriptions?
but instead of creating and confirming a PaymentIntent at this step https://docs.stripe.com/payments/bank-transfers/accept-a-payment?payment-ui=direct-api&invoices=with#web-create-and-confirm-payment-intent
you would use this step https://docs.stripe.com/billing/subscriptions/build-subscriptions?platform=web&ui=elements#create-subscription
and confirm the PaymentIntent on the latest_invoice as described https://docs.stripe.com/payments/bank-transfers/accept-a-payment?payment-ui=direct-api&invoices=with#web-create-and-confirm-payment-intent
what front end element to use to collect bank details
did you read any of the docs that I shared?
you don't have to confirm on the front end
you only need to confirm it on the backend
we have an api to create the subscription. in the backend. i thought i would be able to use the pay element and get the payment method id and use that for creating subscriptions. currently i am unable to get the payment method id. thats the blocker for me.
maybe i am missing something from docs.
that's not how bank transfers work
ok so what do i have to then
on front end.