防止按比例递归更改
Preventing Prorated changes in Recurly
我正在为每月订阅设置 Recurly。由于法律限制,我们无法按比例分配退款或积分。它的 "all or nothing"。因此,所有订阅都从每个月的 1 日开始,并且始终在整个月内退款(即使他们在第 30 天取消)。
另一方面,如果他们想在月中升级(或降级),则必须支付(或记入)全额月差额。如何关闭 Recurly 中的按比例分配的功能?或者我如何通过 API?
指定 credits/billing 的金额
我正在 PHP 使用 PHP API 和托管页面进行新购买。
只要在 "immediately" 的时间范围内发布订阅更改,就会自动按比例分配。此功能无法绕过,但可能有一些解决方法:
So all subscriptions start on the 1st of every month
这里有一个问题 - 订阅必须始终在每月 1 日开始 还是只是续订?如果是前者,是需要等到当月1号开始订阅,还是立即激活?
- 从本月的第一天开始:在 API 中传递 starts_at 参数(注意,之后您不能使用托管页面进行注册,因为它们不支持此参数)
- 月初续订:订阅开始后,使用推迟API调用将下一个续订日期调整为1号。
and refunds always for the whole month (even if they cancel on the 30th day).
In this case, you'll always want to issue a FULL refund, or just specify the full subscription price when issuing a refund.
On the flip side, if they want to upgrade (or downgrade) mid-month
they have to pay (or get credited) the FULL monthly difference. How
can I turn off prorated features in Recurly? Or alternatively how can
I specify amounts for credits/billing via the API?
- 如果更改需要立即生效,您需要终止现有订阅(如果需要,可以退款),然后根据客户的新条款重新订阅。如果您希望将他们的账单周期日期与每月的第一天对齐,您需要再次使用推迟 API 电话
- 如果更改可以在续订时发生,则发布订阅更改以在续订时发生。它将等到当月 1 日,然后按新计划的全价收费。
我正在为每月订阅设置 Recurly。由于法律限制,我们无法按比例分配退款或积分。它的 "all or nothing"。因此,所有订阅都从每个月的 1 日开始,并且始终在整个月内退款(即使他们在第 30 天取消)。
另一方面,如果他们想在月中升级(或降级),则必须支付(或记入)全额月差额。如何关闭 Recurly 中的按比例分配的功能?或者我如何通过 API?
指定 credits/billing 的金额我正在 PHP 使用 PHP API 和托管页面进行新购买。
只要在 "immediately" 的时间范围内发布订阅更改,就会自动按比例分配。此功能无法绕过,但可能有一些解决方法:
So all subscriptions start on the 1st of every month
这里有一个问题 - 订阅必须始终在每月 1 日开始 还是只是续订?如果是前者,是需要等到当月1号开始订阅,还是立即激活?
- 从本月的第一天开始:在 API 中传递 starts_at 参数(注意,之后您不能使用托管页面进行注册,因为它们不支持此参数)
- 月初续订:订阅开始后,使用推迟API调用将下一个续订日期调整为1号。
and refunds always for the whole month (even if they cancel on the 30th day). In this case, you'll always want to issue a FULL refund, or just specify the full subscription price when issuing a refund.
On the flip side, if they want to upgrade (or downgrade) mid-month they have to pay (or get credited) the FULL monthly difference. How can I turn off prorated features in Recurly? Or alternatively how can I specify amounts for credits/billing via the API?
- 如果更改需要立即生效,您需要终止现有订阅(如果需要,可以退款),然后根据客户的新条款重新订阅。如果您希望将他们的账单周期日期与每月的第一天对齐,您需要再次使用推迟 API 电话
- 如果更改可以在续订时发生,则发布订阅更改以在续订时发生。它将等到当月 1 日,然后按新计划的全价收费。