#sagar823
1 messages · Page 1 of 1 (latest)
Hi,
I invite you to check this guide:
https://stripe.com/docs/products-prices/pricing-models#transforming-quantities
Hey, I want to charge user hourly basis is it possible ?
I have all details of user's and i want to deduct amount hourly basis from user's account
The min interval is one day for charging, but you can keep tracking of hourly based usage.
Okay, But After an each hour I won't ask user and won't take confirmation from user for Payment , From the backend side charge will automatically apply
Once I get confirmation from User then I will charge every hour automatically ?
Is it possible ? OR Do i need take confirmation from User each Time (wihtout Subscription )
Once I get confirmation from User then I will charge every hour automatically ?
No you can't charge the customer every hour.
Is there any other way to achieve this feature ?
You can manage that in your integration and use PaymentIntent or Invoices in order to charge the customer hourly
on Okay , can you please guide me how it can be possible with PaymentIntent?
You need to manage the recurring hourly usage by your own integration, and each hour you need to charge the customer like a normal off session payments with Stripe. For example you can follow this guide in order to collect the payment from the customer the first time:
https://stripe.com/docs/payments/save-and-reuse?platform=web
And then each hour, you charge the customer using the saved payment method:
https://stripe.com/docs/payments/save-and-reuse?platform=web&ui=elements#charge-saved-payment-method
Without taking confirmation from User , Right ?
yes that can be done completly on the backend (if the card's issuer bank doesn't require a 3DS authentication)
Let me elaborate entire situation here, Ex. First Time user arrives and goes for a Payment then 10$ will be deduct then after every 1 hour we will charge 5$ and this time we do not want to bother User for confirmation , we will automatically deduct 5$ after each hour until the User is using our service
yes correct, you can follow the guides above if you want to use PaymentIntent
and if you want to use Invoices
You can follow this quickstart:
https://stripe.com/docs/invoicing/integration/quickstart
And you can use the automatic collection feature of invoices:
https://stripe.com/docs/invoicing/automatic-collection
Okay, Thank you @formal arch , Let me try this way