Changing the subscription renewal quantity

Learn how to change the quantity of the renewed subscription.

Managing your Digital River subscription services is crucial for maintaining customer satisfaction and streamlining your operations. One key aspect of subscription management is adjusting the renewal quantity based on customer needs or inventory levels. This guide will walk you through the simple yet powerful process of updating the renewal quantity for any subscription. Whether you're scaling a customer's service up or down, this functionality ensures that your subscriptions remain flexible and responsive to changes in demand.

Understanding why a shopper might want to adjust their renewal quantity can guide your approach to subscription management and customer service. Here are the key reasons:

  • Changing needs: A shopper's need for your product or service could change over time, requiring adjustments to their subscription quantity.

  • Financial planning: Shoppers may adjust their renewals based on budget considerations, opting for more or fewer services or products as their financial situation changes.

  • Operational adjustments: For businesses, operational changes might necessitate more or fewer subscriptions.

  • Expanding or downsizing: As a shopper's business grows or scales down, they may need to adjust their subscription correspondingly.

  • Optimizing resources: Shoppers might discover they are over or under-utilizing a service and adjust their subscription to match their actual usage.

Understanding these reasons will help you better manage your subscription services and align them with your dynamic business needs.

To change the subscription renewal quantity, send a POST /v1/subscriptions/{subscriptionId}/renewal-quantity request. You must replace {subscriptionId} with the actual ID of the subscription you wish to modify and specify the desired renewalQuantity in the request's body.

In the following example, the value for the renewalQuantity is 2.

curl --location --request POST 'https://api.digitalriver.com/v1/subscriptions/{subscriptionId}/renewal-quantity' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer ***' \
--data-raw '{
"renewalQuantity": 2
}'

After submitting the request, you should receive a 202 Accepted response, indicating that the request to change the renewal quantity has been accepted and will be processed. The new plan will go into effect on the next renewal.

Last updated