Reschedule Payment
post
/2.0/subscription/payments_reschedule
Change the due date of the upcoming subscription payment
Example Request
preparing...
Usage Notes
- You may need to first call the List Payments API to get an upcoming (
is_paid
is0
) payment ID value to make this call. - Rescheduling a payment doesn't recalculate the customer's billing schedule.
- Causes all future payments to be rescheduled on the basis of the date chosen, using the same billing interval. For example, moving a monthly subscription payment date from Jan 30th to Jan 15th changes the recurring billing date to 15th of each month.
- Subscription
state
is not impacted.
vendor_id
integerThe vendor ID identifies your seller account. This can be found in Developer Tools > Authentication.
>= 1
vendor_auth_code
stringThe vendor auth code is a private API key for authenticating API requests. This key should never be used in client side code or shared publicly. This can be found in Developer Tools > Authentication.
Match pattern:
[0-9a-f]+
payment_id
integerThe upcoming subscription payment ID. This can be obtained by calling the List Payments API.
date
stringThe date (in format YYYY-MM-DD) you want to move the payment to.
Match pattern:
\d{4}-\d{2}-\d{2}
::::