#3nc0dedguy_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/1328330246252138540
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
const session = await stripe.checkout.sessions.create({
success_url: 'https://beta.jsmon.sh/dashboard',
cancel_url: 'https://beta.jsmon.sh/dashboard',
currency: 'inr',
line_items: [{
price: plan,
quantity: 1
}],
customer: customer.id,
phone_number_collection: {
enabled: true
},
billing_address_collection: 'required',
mode: 'subscription',
allow_promotion_codes: true
})```
This is my current code for creating a checkout session for a user.
India
Google and Apple Pay are not supported in India, unfortunately.
For all other payment method types, we recommend to omit payment_method_types parameter. This way, the available payment methods can be controlled via the Dashboard, and Checkout will always show all eligible ones.
๐ taking over for my colleague. Let me know if there's any follow-up Qs I can answer!
Is it going to be available in India anytime soon?
for what exactly?