#milan_api

1 messages ¡ Page 1 of 1 (latest)

topaz nimbusBOT
#

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

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

minor hollow
#

Stripe doesn't support $0 on Payment Intent. Setup Intent is meant to be used for saving a card.

If you want to perform auth validation on the Payment Intent, one way is to use small amount such as $1 for example to do the manual capture flow (i.e. auth only using capture_method: 'manual), then cancel the Payment Intent: https://docs.stripe.com/payments/place-a-hold-on-a-payment-method#authorize-only

Use manual capture to temporarily reserve funds without immediately charging the payment method.

drowsy lodge
#

Got it. Thanks