Search
K
Links

Managing the subscription ship to address

Learn how to change the subscription's shipping address.
The following POST /v1/subscriptions/{subscriptionId}/ship-to-address request changes the subscription's shipping address. You need to provide the subscription identifier (subscriptionId) and provide the updated address information.
cURL
curl --location --request POST 'https://{host}/v1/subscriptions/{subscriptionId}/ship-to-address' \
--header 'Authorization: Basic ****' \
...
--data-raw '{
"firstName": "Jane",
"lastName": "Doe",
"companyName": "Acme Company",
"line1": "1234 Fake Street",
"line2": "Apt. 2",
"line3": null,
"city": "Minnetonka",
"countrySubdivision": "MN",
"postalCode": "55343",
"country": "US",
"phoneNumber": "555-253-1234",
"countyName" : null,
"emailAddress": "[email protected]"
}'
You will receive a 202 Accepted response.