GET
/
shipping
/
shippingMethods
/
{itemId}
curl --request GET \
  --url https://prod01.oms.fabric.inc/api/v2/shipping/shippingMethods/{itemId} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-site-context: <x-site-context>'
{
  "shippingMethods": [
    {
      "shippingMethodId": "5349b4ddd2781d08c09890f4",
      "name": "Express Delivery",
      "description": "Express Delivery 2 - 5 days",
      "taxCode": "tax_1",
      "minimumDays": 2,
      "maximumDays": 5,
      "cutOffTime": 1330,
      "cost": 20,
      "channel": "12",
      "region": "CA",
      "deleted": false,
      "createdBy": "User1",
      "updatedBy": "User2",
      "configuredBy": "User3",
      "addressType": "APO",
      "weight": {
        "min": 2,
        "max": 3
      },
      "cartValue": {
        "min": 2,
        "max": 3
      },
      "dimension": {
        "min": {
          "height": 2,
          "width": 3,
          "length": 4
        },
        "max": {
          "height": 2,
          "width": 3,
          "length": 4
        }
      },
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-site-context
string
required

The x-site-context header is a JSON object that contains information about the source you wish to pull from. The mandatory account is the 24 character identifier found in Copilot. The channel (Sales channel ID), stage (environment name), and date attributes can be used to further narrow the scope of your data source.

Path Parameters

itemId
string
required

Item ID

Response

200
application/json
OK

Details of shippng method

shippingMethods
object[]