Changing the subscription renewal type

Learn how to change the subscription renewal type.

The following POST /v1/subscriptoins/{subscriptionId}/renewal-type request changes the subscription renewal type. You need to provide the subscriptionId and specify the autoRenewal.

curl --location --request POST 'https://{host}/v1/subscriptions/{subscriptionId}/renewal-type' \
--header 'Content-Type:  application/json' \
--header 'authorization: bearer ***\
--data-raw '{
   "autoRenewal": false
}'

You will receive a 202 Accepted response.

Last updated