首页 > 解决方案 > 如果自动重试之一成功,条带是否会自动将订阅设置回“活动”?

问题描述

如果Stripe在第一次尝试时未能为订阅收取付款,但在第二次自动重试时成功(即通过成功的自动恢复过程),它是否会自动将订阅从 转换status = 'past_due'status = 'active'

我正在阅读Stripe Docs: Lifecycle#reactivate

要将订阅状态从未付款或逾期状态设置回活动状态,请打开最近的发票并尝试付款。请注意,支付任何其他发票(不是最新发票)不会更改订阅状态。

上述说明是否仅适用于恢复过程失败的订阅,或者我是否总是需要手动打开最近的发票并付款才能转换回status = 'active'?

标签: stripe-payments

解决方案


As long as the most recent invoice on a Subscription is paid, the Subscription would have status set to active. So whether you pay it manually, or automatic retries pay the invoice, it will automatically move the Subscription back to active.


推荐阅读