Modify Subscription Shipping Address
This API enables you to change the shipping address for a subscription.
URI Summary
Operation |
Action |
URI Template |
URI Example |
Transaction Type |
Unique RequestID Needed for Duplicate Detection? |
Non-URI Request Payload |
Response |
---|---|---|---|---|---|---|---|
Modify Shipping Address | GET | /order-subscription/sellers/{sellerId}/subscriptions/{subscriptionId}/_update |
/order-subscription /sellers/TMSUS/subscriptions/2171_update |
Get details about the specified subscription. | No | JSON |
200 + JSON response |
URI domain name: Radial recommends using the new domain at apg.radial.com. To connect to production Radial APIs, use the following form of the URL:
https://apg.radial.com/v1.0/proxyname/storecode/function
You should have received the applicable information for proxyname, storecode, and function from your Radial representative.
Note: The old domain will still be in operation until further notice from Radial. For more information on Radial API URIs, see API Requests and Responses.
Examples
{
"addressType": "MailingAddress",
"line1": "630 Allendale Road",
"addressId": "address_1",
"line2": "Suite 200",
"line3": "Suite 201",
"line4": "Suite 202",
"firstName": "Indiana",
"lastName": "Jones",
"city": "King of Prussia",
"phone": "999-999-9999",
"stateOrProvinceCode": "PA",
"countryCode": "US",
"zipCode": "19406"
}
{
"sellerId": "TMSUS",
"subscriptionId": "2171",
"address": {
"addressType": "MailingAddress",
"line1": "630 Allendale Road",
"line2": "Suite 200",
"line3": "Suite 201",
"firstName": "Indiana",
"lastName": "Jones",
"city": "King of Prussia",
"phone": "999-999-9999",
"stateOrProvinceCode": "PA",
"countryCode": "US",
"zipCode": "19406"
}
}