暂停 stripe 订阅 x 个月,未使用的剩余金额应系统退还
Pause stripe subscription for x months and the remaining amount not used should be systematically refunded
我正在使用 Stripe Api 在我的系统上实现在线订阅。我有 2 个月度计划,而且我还在每个月的第一天实施经常性收费。
我想知道是否可以暂停 X 个月的订阅?如果是,如果我的用户暂停了他的订阅 1 或 2 个月,并且他在月中暂停了订阅,是否可以从 stripe 发出已支付的剩余天数的退款?
谢谢,
您可以通过两种不同的方式"pause"订阅:
如果您已经知道暂停应该何时结束,您可以update the subscription with trial_end
set to the timestamp of the next desired billing date, and prorate
设置为false
。
如果您不知道暂停会持续多长时间,您应该cancel the subscription, and create a new subscription在您想要恢复向客户收费时。
如果您想为未使用的时间退款,您必须计算退款金额,然后create a (partial) refund使用订阅的最新费用。
我正在使用 Stripe Api 在我的系统上实现在线订阅。我有 2 个月度计划,而且我还在每个月的第一天实施经常性收费。
我想知道是否可以暂停 X 个月的订阅?如果是,如果我的用户暂停了他的订阅 1 或 2 个月,并且他在月中暂停了订阅,是否可以从 stripe 发出已支付的剩余天数的退款?
谢谢,
您可以通过两种不同的方式"pause"订阅:
如果您已经知道暂停应该何时结束,您可以update the subscription with
trial_end
set to the timestamp of the next desired billing date, andprorate
设置为false
。如果您不知道暂停会持续多长时间,您应该cancel the subscription, and create a new subscription在您想要恢复向客户收费时。
如果您想为未使用的时间退款,您必须计算退款金额,然后create a (partial) refund使用订阅的最新费用。