#farhan1212
1 messages ยท Page 1 of 1 (latest)
Hi
How can I help?
Are you from Stripe dev?
Yes
Can you please tell me when we use subscription api for Stripe, when it will charge from the card?
It depends on the billing cycle for the subscription, can you elaborate on what information you're exactly looking for?
Actually I want that when a user subsubscribe, the payment should be deducted from his card immediately
how can I set this billing cycle?
can you please help?
hello
Is this a new subscription you're creating?
please be patient, I'm helping few other folks at the same time
You'd want to use Create Subscriptions API endpoint and pass the customer ID (assuming you already have the payment method stored), product they're subscribing to and so on..
https://stripe.com/docs/api/subscriptions/create
You'd also want collection_method set to charge_automatically
https://stripe.com/docs/api/subscriptions/create#create_subscription-collection_method
Actually I need to set the billing cycle from the admin panel of STRIPE account, and my billering cycle should be like, first payment IMMEDIATELY and second payment after one month, third payment next month and so on
when you say admin panel, are you referring to Stripe Dashboard? If so, you'd can create a subscription using the dashboard
thanks, is there a possibility that if I have 10 users and they subscribe to stripe on different date, and first payment I want from them on their respective different dates?
for example User1 subscribed on 1st August 2023, his payment should be charged immediately on 1st August 2023 and if
User2 subscribed on 5th August 2023, his payment should be charged immediately on 5th August 2023
Subscriptions created on different dates will be billed on different days
I have one subscription for all these 10 users actually
Huh.. I don't really understand the usecase here ๐
One subscription can't have different intervals
thanks a lot
๐