#KyleForza
1 messages · Page 1 of 1 (latest)
General recommendation is to use a schedule: https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#downgrading-subscriptions
Not sure if you can achieve this with just a subscription update, checking
Alright
Hey, sorry for the wait. Was just testing something
Assuming the downngrade has the same billing interval?
Something like this will work:
proration_behavior: "none",
billing_cycle_anchor: "unchanged",
items: [{
id: "si_xxx",
price: "price_xxx"
}]
}
Let me check