Znode

Build Version:

GET shippingservicecodes/{shippingServiceCodeId}

Gets a shipping service code.

Request Information

» Parameters

Name Description Additional information
shippingServiceCodeId The ID of the shipping service code.

Define this parameter in the request URI.

» Expands

Name Description Usage
shippingType This will retrieve the related shipping type. GET shippingservicecodes/{shippingServiceCodeId}?expand=shippingtype

Response Information

» Response Body Formats

If this endpoint supports expands, they will be included in the sample response body below. However, please note that expands are NOT included in the response body by default. Expands are only included in the response body if they came through as part of the request.

Sample:
	{
  "ShippingServiceCode": {
    "Code": "FEDEX_GROUND",
    "Description": "FedEx Ground",
    "DisplayOrder": 9,
    "IsActive": true,
    "ShippingServiceCodeId": 19,
    "ShippingType": {
      "ClassName": "ZnodeShippingFedEx",
      "Description": "Calculates shipping rates when using FedEx.",
      "IsActive": true,
      "Name": "FedEx",
      "ShippingTypeId": 1
    },
    "ShippingTypeId": 2
  },
  "ErrorCode": null,
  "ErrorMessage": null,
  "StackTrace": null,
  "AllowHtmlResponse": false,
  "HasError": false,
  "StringResponse": null
}