getShippingMethod
get
/ccagent/v1/shippingMethods/{id}
Get Shipping Method. Get a shipping method.This Endpoint is clone of StoreFront endpoint and it can be used if application running on agent/admin server need access to shipping methods data configured for StoreFront.
Request
Supported Media Types
- application/json
Path Parameters
-
id(required): string
the id of the shipping method to get
Response
Supported Media Types
- application/json
200 Response
Following model is returned when operation succeeds.
Root Schema : getShippingMethod_response
Type:
Show Source
object
-
description:
string
Description of the shipping method.
-
displayName:
string
The display name for the shipping method given the current locale.
-
displaySequence:
integer
Used to determine the ordering of shipping methods in the UI. Lower values should appear first in any ordered list.
-
eligibleForProductWithSurcharges:
boolean
Whether this shipping method is enabled for products with surcharges or not. Defaults to null.
-
enabled:
boolean
whether this shipping method is enabled or not.
-
isExternallyPriced:
boolean
Whether this shipping method can be priced externally or not. Defaults to false.
-
isFallback:
boolean
Use this shipping method when Commerce Cloud cannot connect to an external shipping service. Defaults to false.
-
ranges:
array ranges
The price ranges for this shipping method.
-
repositoryId:
string
the id of the newly created shipping method item
-
shippingCalculator:
string
A valid key for the available calculator types.
-
shippingGroupType:
string
Shipping group type.
-
shipToLocations:
array shipToLocations
Allowed shipping locations.
-
taxCode:
string
A valid tax code for calculating tax on shipping.
-
type:
integer
The type property of the shipping method.
Nested Schema : items
Type:
Show Source
object
-
amount:
number
The monetary value for the range.
-
high:
number
The upper boundary of the range.
-
low:
number
The lower boundary of the range.
-
repositoryId:
string
The repository id of this priceRange item.
Nested Schema : items
Type:
Show Source
object
-
repositoryId:
string
Allowed shipping country-region IDs.
Example Response (application/json)
{
"shippingCalculator":"priceRange",
"eligibleForProductWithSurcharges":null,
"isExternallyPriced":false,
"ranges":[
{
"amount":4.5,
"high":49.99,
"low":0,
"repositoryId":"groundRange_01"
},
{
"amount":8.5,
"high":99.99,
"low":50,
"repositoryId":"groundRange_02"
},
{
"amount":11,
"high":null,
"low":100,
"repositoryId":"groundRange_03"
}
],
"displayName":"Ground",
"description":null,
"type":0,
"taxCode":null,
"shippingGroupType":"hardgoodShippingGroup",
"enabled":true,
"displaySequence":7,
"repositoryId":"groundShippingMethod",
"isFallback":false,
"shipToLocations":[
{
"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|
|------------------|------------------|
|31015|No shipping method found with id: {0}|
Root Schema : errorModel
Type:
Show Source
object
-
devMessage:
string
An optional non-localized message containing technical information for developers
-
errorCode:
string
The numerical code identifying the error
-
errors:
array errors
An optional list of errors if multiple errors were encountered
-
message:
string
The localized message describing the error
-
moreInfo:
string
An optional non-localized message with more information
-
o:errorPath:
string
An optional machine readable description of where the error occurred
-
status:
string
The HTTP status code
-
type:
string
The URI to the HTTP state code definition
Nested Schema : errors
Type:
array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type:
Show Source
object
-
devMessage:
string
An optional non-localized message containing technical information for developers
-
errorCode:
string
The numerical code identifying the error
-
message:
string
The localized message describing the error
-
moreInfo:
string
An optional non-localized message with more information
-
o:errorPath:
string
An optional machine readable description of where the error occurred
-
status:
string
The HTTP status code