updateShippingRegion
put
/ccadmin/v1/shippingRegions/{id}
Update Shipping Region. Updates a Shipping Region based on request parameters.
Request
Supported Media Types
- application/json
Path Parameters
- id
-
Type:
stringRequired:trueThe ID of the shipping region to be updated.
Body Parameter
Root Schema : updateShippingRegion_request
{
"shippingRegionName":"NorthUS",
"shippingCountryRegion":{
"regions":[
{
"repositoryId":"US-AL"
}
],
"repositoryId":"US"
}
}
- repositoryId
-
Type:
stringRequired:trueRepository Id of Shipping Region. - shippingCountryRegion
-
Type:
arrayshippingCountryRegionRequired:trueAdditional Properties Allowed:Repository Id of the region. - shippingRegionName
-
Type:
stringRequired:trueName of the Shipping Region.
Nested Schema : shippingCountryRegion
Nested Schema : items
Type:
object- regions
-
Type:
arrayregionsAdditional Properties Allowed:The list of all Shipping Regions. - repositoryId
-
Type:
stringRequired:trueRepository Id of shipping Country Region.
Nested Schema : regions
Nested Schema : items
Type:
object- repositoryId
-
Type:
stringRequired:trueThe Repository Id of the specific region.
Response
Supported Media Types
- application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : updateShippingRegion_response
- repositoryId
-
Type:
stringThe Repository Id of the Shipping Region. - shippingCountryRegion
-
Type:
arrayshippingCountryRegionAdditional Properties Allowed:The list of all regions of a country in the Shipping region. - shippingRegionName
-
Type:
stringName of the Shipping Region.
Nested Schema : shippingCountryRegion
Nested Schema : items
Type:
objectNested Schema : country
Nested Schema : regions
Nested Schema : items
Type:
object- countryCode
-
Type:
stringThe code of the country in the Shipping Region. - displayName
-
Type:
stringThe name of the country. - repositoryId
-
Type:
stringThe repository Id of country.
Nested Schema : items
Type:
object- abbreviation
-
Type:
stringThe region code in abbreviated form. Usually a 2 letter country code - displayName
-
Type:
stringThe name of the specific region. - regionCode
-
Type:
stringThe code of the specific Region. - repositoryId
-
Type:
stringThe Repository Id of the specific region.
Example application/json
{
"shippingRegions":[
{
"repositoryId":"NorthUS",
"shippingRegionName":"NorthUS",
"shippingCountryRegion":[
{
"country":{
"countryCode":"US",
"displayName":"United States",
"repositoryId":"US"
},
"regions":[
{
"regionCode":"US-AL",
"displayName":"Alabama",
"repositoryId":"US-AL",
"abbreviation":"AL"
}
],
"repositoryId":"100001"
}
]
}
]
}
Default Response
The error response.
The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud:
|Error Code|Description|
|------------------|------------------|
|31014|One or more region is invalid for country: {0}.|
|80012|Invalid shipping region details.|
|80018|Invalid or unsupported country name: {0}.|
|81014|Error updating shipping region|
|31018|Please enter a valid shipping region name.|
Body
Root Schema : errorModel
Type:
object- devMessage
-
Type:
stringAn optional non-localized message containing technical information for developers - errorCode
-
Type:
stringThe numerical code identifying the error - errors
-
Type:
arrayerrorsAdditional Properties Allowed:An optional list of errors if multiple errors were encountered - message
-
Type:
stringThe localized message describing the error - moreInfo
-
Type:
stringAn optional non-localized message with more information - o:errorPath
-
Type:
stringAn optional machine readable description of where the error occurred - status
-
Type:
stringThe HTTP status code - type
-
Type:
stringThe URI to the HTTP state code definition
Nested Schema : errors
Nested Schema : items
Type:
object- devMessage
-
Type:
stringAn optional non-localized message containing technical information for developers - errorCode
-
Type:
stringThe numerical code identifying the error - message
-
Type:
stringThe localized message describing the error - moreInfo
-
Type:
stringAn optional non-localized message with more information - o:errorPath
-
Type:
stringAn optional machine readable description of where the error occurred - status
-
Type:
stringThe HTTP status code
Examples
Sample Request:
{
"shippingRegionName": "NorthUS",
"shippingCountryRegion": {
"regions": [{"repositoryId": "US-AL"}],
"repositoryId": "US"
}
}
Sample Response Payload returned by endpoint:
{"shippingRegions": [{
"repositoryId": "NorthUS",
"shippingRegionName": "NorthUS",
"shippingCountryRegion": [{
"country": {
"countryCode": "US",
"displayName": "United States",
"repositoryId": "US"
},
"regions": [{
"regionCode": "US-AL",
"displayName": "Alabama",
"repositoryId": "US-AL",
"abbreviation": "AL"
}],
"repositoryId": "100001"
}]
}]}