当使用带区卷的每个订阅的多个计划时,如何更新数量或从该多个计划订阅中取消单个计划,因为作为响应,我仅获得1个子ID。
当是单一计划订阅时,我会这样更新:
let item = {
"quantity": quantity,
"prorate": "false"
};
subscription(subId, item) //backend function
或者如果我想取消它,我这样做:
let item = {
"cancel_at_period_end": 'true'
};
subscription(subId, item) //backend function
但是如何在计划A和计划B的多个计划订阅中取消计划A?
将Wix代码用于项目。
答案 0 :(得分:0)
具有多个计划的订阅中的每个计划都由subscription_item表示。
您可以通过deleting its subscription item删除一个计划(如果要按比例分配该计划在当前结算周期,请确保将prorate
设置为true
)。