#fedoraus
1 messages · Page 1 of 1 (latest)
👋 Sounds like what you need is usage based billing model
https://stripe.com/docs/billing/subscriptions/usage-based#lifecycle
I'd recommend reading the doc above as it should mostly cover everything you need
it means, that customer will pay based on price per action? for example if i have 1 action on my site for 50 cents, and customer did 50 actions, i can change this actionValue in stripe charging request, and in the end of tho month stripe will charge 25 $?
I don't really understand what you mean by actionValue but the overall idea of usage based billing is,
- Customer signs up for a subscription
- Whenever they use your services (actions), you report usage and record their action
- At the end of the billing cycle, Stripe calculates the total amount due based on price & the total reported usage
yeah, under actionValue i ment count of actions, that customer did, this is right solution for me, thank u so much!