Stripe:期末后计划变更
Stripe: Plan change after period ends
我有几个客户在我的网站上订阅了许多其他 Stripe 计划:这些计划都是 'yearly' 并且订阅量不同。请注意,我还有订阅状态为 "active" 的客户和许多其他订阅状态为 "trialing".
的客户
现在,我需要在他们各自的结算周期结束时,自动将他们的订阅计划更改为一个独特的新年度计划,订阅金额不同。
我一直在寻找合适的事件,以便在 webhook 中以编程方式更改计划,但我不知道选择哪个同时具有 'active' 和 'trialing' 订阅。
有什么想法吗?
我认为 invoice.upcoming
该事件对尾随和活跃都有效。订阅。
您可以配置 invoice.upcoming webhook 提前 1 天到达并修改客户的订阅和发票。
invoice.upcoming : Occurs X number of days before a subscription is
scheduled to create an invoice that is charged automatically, where X
is determined by your subscriptions settings. Note the received
invoice object will not have an invoice ID.
希望对您有所帮助
我有几个客户在我的网站上订阅了许多其他 Stripe 计划:这些计划都是 'yearly' 并且订阅量不同。请注意,我还有订阅状态为 "active" 的客户和许多其他订阅状态为 "trialing".
的客户现在,我需要在他们各自的结算周期结束时,自动将他们的订阅计划更改为一个独特的新年度计划,订阅金额不同。
我一直在寻找合适的事件,以便在 webhook 中以编程方式更改计划,但我不知道选择哪个同时具有 'active' 和 'trialing' 订阅。
有什么想法吗?
我认为 invoice.upcoming
该事件对尾随和活跃都有效。订阅。
您可以配置 invoice.upcoming webhook 提前 1 天到达并修改客户的订阅和发票。
invoice.upcoming : Occurs X number of days before a subscription is scheduled to create an invoice that is charged automatically, where X is determined by your subscriptions settings. Note the received invoice object will not have an invoice ID.
希望对您有所帮助