#orangesidny_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/1234933005504614493
đ 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.
- orangesidny_webhooks-signature, 23 hours ago, 43 messages
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,
},
});
Hello! When you create the Checkout Session you can set metadata on the Subscription it creates: https://docs.stripe.com/api/checkout/sessions/create#create_checkout_session-subscription_data-metadata
Then you can later reference that Subscription metadata when you receive Events.
Oh, I did not realise you could do that, thank you, I thought the metadata would naturally apply globally,
While you are here, I have a question regarding webhook events.
Do you have a list of all of the webhook events that could be triggered?
As I am doing subscriptions I do not want to miss any events that are important
We have a list of all Event types here: https://docs.stripe.com/api/events/types
But for Subscriptions you should look here instead: https://docs.stripe.com/billing/subscriptions/overview#subscription-events
Thank you, I think I was looking on the Stripe API docs for the subscription instead of the other docs
Happy to help!