Updating the subscription renewal date
Learn how to change the subscription renewal date (expiration date).
The following POST /v1/subscriptions/{subscriptionId}/expiration-date
request changes the quantity of the renewed subscription. You must provide the subscriptionId
and specify the expirationDate
. The expiration date must be the current or future date. See the expiration date resource for a description of the attributes.
curl --location --request POST 'https://api.digitalriver.com/v1/subscriptions/{subscriptionId}/expiration-date' \
--header 'Authorization: Basic ****' \
...
--data-raw '{
"expirationDate":"2020-10-19T01:23:48.000-0500"
}'
You will receive a 202 Accepted
response.
Last updated
Was this helpful?