Changing the subscription's external reference identifier

Learn how to change the subscription's external reference identifier.

The following POST /v1/subscriptions/{subscriptionId}/reference-id request changes the subscription's external reference identifier. You must provide the subscriptionId and specify the externalReferenceId.

curl --location --request POST 'https://api.digitalriver.com/v1/subscriptions/{subscriptionId}/reference-id' \
--header 'Authorization: Basic  ***' \
...
--data-raw '{
  "externalReferenceId": "123232exteranl"
}'

You will receive a 202 Accepted response.

Last updated