#Acidon
1 messages · Page 1 of 1 (latest)
Hello! You can set the proration_behavior on the Customer Portal Configuration: https://stripe.com/docs/api/customer_portal/configurations/create#create_portal_configuration-features-subscription_update-proration_behavior
Thanks! Is it 'proration_behaviour' => 'none' at the root level of config array?
Nope, have a look at the API reference link I posted above.
It's under features and then under subscription_update in there.
I see, thanks for your help!
One more thing: I am redirecting to Customer portal via Session like:
$session = Session::create([
'customer' => $customer_id,
'return_url' => $return_url
]);
header("HTTP/1.1 303 See Other");
header("Location: " . $session->url);
How do I pass configuration to Customer Portal in this case??