I used the js sdk to revise the subscription. the code is: paypal.Buttons({ createSubscription: function(data, actions) { return actions.subscription.revise(sub_id, { "plan_id": plan_id, "custom_id": custom_id, }); }, onApprove: function(data, actions) { } }); The ui that pops up shows But actually the plan looks like this: There is a special offer for the first two installments. This leaves us wondering how to solve this problem.
... View more