#rushikesh_63638
1 messages · Page 1 of 1 (latest)
Hi there, how can I help?
https://stripe.com/docs/billing/subscriptions/cancel btw did you go through this doc?
I have a auto renewal subscription which I am creating, but what happens if the customer does have sufficient amount in his account at the time of subscription renewal?
You should read this https://stripe.com/docs/billing/subscriptions/overview#settings
can we set this at the time of subscription creation?
$subReponse = $stripe->subscriptions->create([ 'customer' => $customerAccId, 'items' => [ ['price' => $request->stripe_price_id], ], 'coupon' => $coupon_code, ]);
in this create subscription record
It's a global settings. I'd suggest you go through the doc first and come back when you have a specific question.