Cancelling a subscription

Learn how to cancel a subscription by the subscription identifiers.

The following POST /v1/subscriptions/{subscriptionId}/cancel request cancels the subscription by the subscription identifier. You must provide the subscriptionId. Digital River will automatically send a cancel notification to the customer. If you don't want to send a cancel notification to the customer, set suppressCancelNotification to true.

curl --location --request POST 'https://{host}>/v1/subscriptions/{subscriptionId}/cancel' \
--header 'Content-Type:  application/json' \
--header 'authorization: bearer ***\
--data-raw '{
 "suppressCancelNotification": true
}'

You will receive a 202 Accepted response.

Last updated