#orangesidny_api

1 messages ¡ Page 1 of 1 (latest)

runic zenithBOT
#

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

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

lyric bronzeBOT
#

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.

quasi ibex
#

This is how I create the checkout session

const session = await stripeInstance.checkout.sessions.create({
            mode: "subscription",
            payment_method_types: ["card"],
            automatic_tax: {
                enabled: true
            },
            line_items: [req.body.items.line_items] ?? [],

            success_url: `${req.headers.origin}/store/success?session_id={CHECKOUT_SESSION_ID}`,
            cancel_url: `${req.headers.origin}/store/canceled?cancelledPurchase=true`,
            // shipping_address_collection: { allowed_countries: ["GB"] },
            phone_number_collection: { enabled: true },

                        metadata: {
                            key1: "this is my value1",
                            keyxxxx: "this is my valuexxxx",
                            my_customer_id: '1234567890abcde',
                            userId: userId,
                        },
        });
wild bone
#

Then you can later reference that Subscription metadata when you receive Events.

quasi ibex
wild bone
quasi ibex
wild bone
#

Happy to help!