#manuel_api
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/1344681908793118826
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
I ask this because when the users add the 100% coupon it allows to pay without filling out the Stripe payment form and I need the billing information ๐
You can require billing information, and even require a payment method to be provided up front for subscriptions even if payment is not required
billing_address_collection=required: https://docs.stripe.com/api/checkout/sessions/create#create_checkout_session-billing_address_collection
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
payment_method_collection=always: https://docs.stripe.com/api/checkout/sessions/create#create_checkout_session-payment_method_collection
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
oh ok i'm not using the payment_method_collection key
the same options are available for payment links
just the billing one
thank you so much!!
NP!