#matheuscp-subscription-charge
1 messages ยท Page 1 of 1 (latest)
OK! Thank you! I'm using laravel
Could you provide more information on your integration?
How are you creating subscriptions?
Ok
$pagamento = $stripe->subscriptionSchedules->create([
'customer' => $user_stripe_id,
'start_date' => 'now',
'end_behavior' => 'cancel',
'phases' => [
[
'items' => [
[
'price' => $plan->stripe_id,
'quantity' => 1,
],
],
// 'coupon' => $request->cupom_id,
'iterations' => 12,
],
],
]);
I'm doing like this
I would like it to appear on the card statement as soon as the customer subscribes. Without having to wait 1 hour
Taking a look
are you seeing the schedule stay in scheduled state rather than going to active immediately?
Hi ๐ I'm stepping in for @lost gate
What you are seeing is the default behavior when using Subscription Schedules. You can read about it here:
https://stripe.com/docs/billing/subscriptions/subscription-schedules#managing