#ema6551_docs
1 messages ยท Page 1 of 1 (latest)
๐ 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.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always 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/1221774291780112394
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- ema6551_best-practices, 3 days ago, 4 messages
๐ happy to help
hi tarzan ๐
you can request for extended authorization https://docs.stripe.com/payments/extended-authorization
but you need to contact https://support.stripe.com/?contact=true to see whether you're illegible or not
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
In what sense ? Are there any steps that need to be followed?
just go to that page and chat with our support and let them know you're interested in getting access to the extended-authorization feature
Ok, In this link I read that this function is not available for Checkout. But I use checkout to create a payment session. How could I create a payment session without knowing the customer's payment data beforehand?
unfortunately this is not compatible with Checkout for now
Ok I will ask support about this. But first I would like to understand how to implement it in my solution.
Ok, but what are the ways I can use if I don't know the customer's payment details before making the purchase in my store?
if you're using Checkout this won't work, if you're not willing to switch to Payment Element (aka custom flow) then you won't have access to this feature
How would this work with the payment method?
and if you're using a normal PaymentIntent with "payment_method_options[card][request_extended_authorization]"=if_available this will only be applicable if the customer chooses to pay with cards
I'm reading the documentation from https://docs.stripe.com/api/payment_methods/create
and I note that I can provide the payment data that my customer could provide me to create a payment method to associate with him. But how can I obtain authorization to withdraw funds from him?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
that's not how you should approach this
especially if you're using Checkout Sessions
How i can to do ?
forget about the PM create function this isn't what you need
you can setup a PM for future usage with https://docs.stripe.com/payments/save-and-reuse
but in all cases without extended authorization you would have to make a new PI with manual capture each 7 days using the PM you created with the SetupIntent
and it won't be a good idea to do so
customers will see on their bank account each 7 days a new request to authorize and might not understand what's happening
But, what if I wanted to change my approach. No longer using Checkout Session. How can I set the flow?
you contact https://support.stripe.com/?contact=true you ask whether you're elligible for extended authorization
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
and you follow the guide I gave you first
you create a PaymentIntent with the "payment_method_options[card][request_extended_authorization]"=if_available and then you send the client_secret to the front-end and use the PaymentElement to collect the PaymentMethod
this will give you an e2e workflow
you just need to add the parameter for extended_authorization
Ok i will try it ๐