Changing the subscription renewal quantity

Learn how to change the quantity of the renewed subscription.

The following POST /v1/subscriptions/{subscriptionId}/renewal-quantity request changes the quantity of the renewed subscription. You need to provide the subscriptionId and specify the renewalQuantity. In the following example, the value for the renewalQuantity is 2.

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

You will receive a 202 Accepted response.

Last updated