#solononforever
1 messages · Page 1 of 1 (latest)
Hey toby
HI 👋
Sounds like subscriptions are what you're looking for:
https://stripe.com/en-gb-us/billing
https://stripe.com/docs/billing/subscriptions/overview
Stripe Billing powers recurring payments and subscription business models with tools to reduce churn. Use Stripe’s APIs to quickly set up recurring billing and automatic payments for your business. Easily create and manage subscriptions and recurring invoices from the Dashboard.
Yep, I've been looking into it - it just looks like a lot of apis to call, and objects to handle
I was hoping I could manage product, price and billing issues all through the dashboard
And just have a webhook trigger to reflect the status of the subscription to my db
You can do that, most of the objects can be managed via the dashboard.
This guide walks through some the basics and has dashboard steps for some portions:
https://stripe.com/docs/billing/subscriptions/build-subscriptions
Depending on the amount of functionality you need, a no or low-code approach sounds like it may be what you're looking for. The above guide uses Checkout Sessions, which is our low-code approach.
We also have Payment Links and Pricing Tables available as easier paths:
https://stripe.com/docs/payments/payment-links
https://stripe.com/docs/payments/checkout/pricing-table
Thanks for the help!
Am I correct in assuming that stripe sends triggers regardless of your solution?
So I can just create a stripe customer for my user on attempted checkout, and redirect them to the payment link
Then stripe triggers send pricing plan & subscription status info to my webhook
Yup, webhook events are generated and sent regardless of the integration path your select, as long as you have a webhook endpoint set up to listen for that type of event.
You may see slightly different types of events depending on the exact path you decide to use, but you can run through a test flow of it and then check your dashboard to see all of the events that were generated:
https://dashboard.stripe.com/test/events
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Sweet, Is there any info on what triggers get sent for payment links
There will be quite a few depending on what you're selling with the Payment Link.
For Subscriptions, you'll see events related to:
- Checkout Sessions
- Customers
- Subscriptions
- Invoices
- Payment Intents
- Charges
You can see a full list of event types with a description of what triggers each in our API spec:
https://stripe.com/docs/api/events/types?lang=java
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Alright man, really appreciate the help - I'm super a.d.d. when it comes to navigating large docs
Totally understand, and happy to help!