GET api/ShipmentSurveyOthers/{id}?SurveyID={SurveyID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SurveyID

globally unique identifier

Required

id

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ShipmentSurveyOther
NameDescriptionTypeAdditional information
ID

globally unique identifier

None.

SID

globally unique identifier

None.

Description

string

None.

Weight

integer

None.

NotToShip

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": "57732e21-f380-44e5-ba96-2a520d73dc32",
    "SID": "0932554b-dc17-40bf-b9f2-501af744bfbd",
    "Description": "sample string 3",
    "Weight": 1,
    "NotToShip": true
  },
  {
    "ID": "57732e21-f380-44e5-ba96-2a520d73dc32",
    "SID": "0932554b-dc17-40bf-b9f2-501af744bfbd",
    "Description": "sample string 3",
    "Weight": 1,
    "NotToShip": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfShipmentSurveyOther xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models">
  <ShipmentSurveyOther>
    <Description>sample string 3</Description>
    <ID>57732e21-f380-44e5-ba96-2a520d73dc32</ID>
    <NotToShip>true</NotToShip>
    <SID>0932554b-dc17-40bf-b9f2-501af744bfbd</SID>
    <Weight>1</Weight>
  </ShipmentSurveyOther>
  <ShipmentSurveyOther>
    <Description>sample string 3</Description>
    <ID>57732e21-f380-44e5-ba96-2a520d73dc32</ID>
    <NotToShip>true</NotToShip>
    <SID>0932554b-dc17-40bf-b9f2-501af744bfbd</SID>
    <Weight>1</Weight>
  </ShipmentSurveyOther>
</ArrayOfShipmentSurveyOther>