GET api/ShipmentSurveyOthers/{id}?SurveyID={SurveyID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SurveyID | globally unique identifier |
Required |
|
| id | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ShipmentSurveyOther| Name | Description | Type | Additional 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": "8b5632ea-8151-4c4d-9564-b8fbbda59c77",
"SID": "caf0002f-c46f-4878-942d-58d672c2bb1b",
"Description": "sample string 3",
"Weight": 1,
"NotToShip": true
},
{
"ID": "8b5632ea-8151-4c4d-9564-b8fbbda59c77",
"SID": "caf0002f-c46f-4878-942d-58d672c2bb1b",
"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>8b5632ea-8151-4c4d-9564-b8fbbda59c77</ID>
<NotToShip>true</NotToShip>
<SID>caf0002f-c46f-4878-942d-58d672c2bb1b</SID>
<Weight>1</Weight>
</ShipmentSurveyOther>
<ShipmentSurveyOther>
<Description>sample string 3</Description>
<ID>8b5632ea-8151-4c4d-9564-b8fbbda59c77</ID>
<NotToShip>true</NotToShip>
<SID>caf0002f-c46f-4878-942d-58d672c2bb1b</SID>
<Weight>1</Weight>
</ShipmentSurveyOther>
</ArrayOfShipmentSurveyOther>