#rob1986-checkout-questions
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- rob-checkout-cart, 1 day ago, 26 messages
You can see the list of line items purchased from a Checkout Session with the "List all Checkout Session line items API" https://stripe.com/docs/api/checkout/sessions/line_items
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
great thanks @sage sedge !!
Is it possible to have two webhooks with the same events but different Endpoint URLs ?
Yes, If a single account has multiple webhooks with different URLs and are listening for the same events, the same event would be sent to multiple endpoints
is it possible to not have it call multiple endpoints? so i want webhook A to only be triggered when a subscription is created, and webhook B to only be triggered when products are purchased
You can configure your webhooks to only listen for specific events (like you can have webhook A listen for customer.subscription.created and webhook B can listen for invoice.paid)