#solononforever

1 messages · Page 1 of 1 (latest)

twilit inletBOT
vital saddle
#

Hey toby

compact crater
#

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.

Learn how subscriptions work within Stripe.

vital saddle
#

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

compact crater
#

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

Accept payments without building a digital storefront.

Display a pricing table on your website and take customers directly to Stripe Checkout.

vital saddle
#

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

compact crater
#

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

vital saddle
#

Sweet, Is there any info on what triggers get sent for payment links

compact crater
#

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

vital saddle
#

Alright man, really appreciate the help - I'm super a.d.d. when it comes to navigating large docs

compact crater
#

Totally understand, and happy to help!