getShippingRegion
get
/ccadmin/v1/shippingRegions/{id}
Get Shipping Region. Returns a Shipping Region against the ID passed.
Request
Supported Media Types
- application/json
Path Parameters
- id
-
Type:
string
Required:true
The ID of the shipping region to be fetched.
Response
Supported Media Types
- application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : getShippingRegion_response
- repositoryId
-
Type:
string
The Repository Id of the Shipping Region. - shippingCountryRegion
-
Type:
array
shippingCountryRegionAdditional Properties Allowed:The list of all regions of a country in the Shipping region. - shippingRegionName
-
Type:
string
Name of the Shipping Region.
Nested Schema : shippingCountryRegion
Nested Schema : items
Type:
object
Nested Schema : country
Type:
object
The details of the country present in the Shipping Region.
- countryCode
-
Type:
string
The code of the country in the Shipping Region. - displayName
-
Type:
string
The name of the country. - repositoryId
-
Type:
string
The repository Id of country.
Nested Schema : regions
Nested Schema : items
Type:
object
- abbreviation
-
Type:
string
The region code in abbreviated form. Usually a 2 letter country code - displayName
-
Type:
string
The name of the specific region. - regionCode
-
Type:
string
The code of the specific Region. - repositoryId
-
Type:
string
The Repository Id of the specific region.
Example application/json
{
"repositoryId":"100001",
"shippingRegionName":"United States",
"shippingCountryRegion":[
{
"country":{
"countryCode":"US",
"displayName":"United States",
"repositoryId":"US"
},
"regions":[
{
"regionCode":"US-AR",
"displayName":"Arkansas",
"repositoryId":"US-AR",
"abbreviation":"AR"
},
{
"regionCode":"US-ME",
"displayName":"Maine",
"repositoryId":"US-ME",
"abbreviation":"ME"
},
{
"regionCode":"US-WV",
"displayName":"West Virginia",
"repositoryId":"US-WV",
"abbreviation":"WV"
},
{
"regionCode":"US-GA",
"displayName":"Georgia",
"repositoryId":"US-GA",
"abbreviation":"GA"
},
{
"regionCode":"US-OR",
"displayName":"Oregon",
"repositoryId":"US-OR",
"abbreviation":"OR"
}
],
"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|
|------------------|------------------|
|80012|Invalid shipping region details.|
|80016|Error getting a shipping region.|
|80020|Shipping region does not exist for id: {0}.|
Body
Root Schema : errorModel
Type:
object
- devMessage
-
Type:
string
An optional non-localized message containing technical information for developers - errorCode
-
Type:
string
The numerical code identifying the error - errors
-
Type:
array
errorsAdditional Properties Allowed:An optional list of errors if multiple errors were encountered - message
-
Type:
string
The localized message describing the error - moreInfo
-
Type:
string
An optional non-localized message with more information - o:errorPath
-
Type:
string
An optional machine readable description of where the error occurred - status
-
Type:
string
The HTTP status code - type
-
Type:
string
The URI to the HTTP state code definition
Nested Schema : errors
Nested Schema : items
Type:
object
- devMessage
-
Type:
string
An optional non-localized message containing technical information for developers - errorCode
-
Type:
string
The numerical code identifying the error - message
-
Type:
string
The localized message describing the error - moreInfo
-
Type:
string
An optional non-localized message with more information - o:errorPath
-
Type:
string
An optional machine readable description of where the error occurred - status
-
Type:
string
The HTTP status code
Examples
Sample Response Payload returned by endpoint:
{ "repositoryId": "100001", "shippingRegionName": "United States", "shippingCountryRegion": [{ "country": { "countryCode": "US", "displayName": "United States", "repositoryId": "US" }, "regions": [ { "regionCode": "US-AR", "displayName": "Arkansas", "repositoryId": "US-AR", "abbreviation": "AR" }, { "regionCode": "US-ME", "displayName": "Maine", "repositoryId": "US-ME", "abbreviation": "ME" }, { "regionCode": "US-WV", "displayName": "West Virginia", "repositoryId": "US-WV", "abbreviation": "WV" }, { "regionCode": "US-GA", "displayName": "Georgia", "repositoryId": "US-GA", "abbreviation": "GA" }, { "regionCode": "US-OR", "displayName": "Oregon", "repositoryId": "US-OR", "abbreviation": "OR" } ], "repositoryId": "100001" }] }