GET api/Product/GetProductShippingInformation?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ProductShippingInfoResponseModel
NameDescriptionTypeAdditional information
Id

string

None.

RequireShipping

boolean

None.

UseCustomShippingCostSettings

boolean

None.

UseAusPostAPI

boolean

None.

Width

decimal number

None.

Length

decimal number

None.

Height

decimal number

None.

Weight

decimal number

None.

Qty

integer

None.

Result

ResponseResult

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "RequireShipping": true,
  "UseCustomShippingCostSettings": true,
  "UseAusPostAPI": true,
  "Width": 5.1,
  "Length": 6.1,
  "Height": 7.1,
  "Weight": 8.1,
  "Qty": 9,
  "Result": {
    "Success": true,
    "Message": "sample string 2",
    "Errors": [
      {
        "Message": "sample string 1"
      },
      {
        "Message": "sample string 1"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<ProductShippingInfoResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bond.Core.API.Models.Response">
  <Result>
    <Errors>
      <ErrorMessage>
        <Message>sample string 1</Message>
      </ErrorMessage>
      <ErrorMessage>
        <Message>sample string 1</Message>
      </ErrorMessage>
    </Errors>
    <Message>sample string 2</Message>
    <Success>true</Success>
  </Result>
  <Height>7.1</Height>
  <Id>sample string 1</Id>
  <Length>6.1</Length>
  <Qty>9</Qty>
  <RequireShipping>true</RequireShipping>
  <UseAusPostAPI>true</UseAusPostAPI>
  <UseCustomShippingCostSettings>true</UseCustomShippingCostSettings>
  <Weight>8.1</Weight>
  <Width>5.1</Width>
</ProductShippingInfoResponseModel>