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": "339a1a5d-8edb-47c3-a0ef-27017b93d121",
"SID": "9b4059d6-8b1b-4e0a-9acb-f185388f7960",
"Description": "sample string 3",
"Weight": 1,
"NotToShip": true
},
{
"ID": "339a1a5d-8edb-47c3-a0ef-27017b93d121",
"SID": "9b4059d6-8b1b-4e0a-9acb-f185388f7960",
"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>339a1a5d-8edb-47c3-a0ef-27017b93d121</ID>
<NotToShip>true</NotToShip>
<SID>9b4059d6-8b1b-4e0a-9acb-f185388f7960</SID>
<Weight>1</Weight>
</ShipmentSurveyOther>
<ShipmentSurveyOther>
<Description>sample string 3</Description>
<ID>339a1a5d-8edb-47c3-a0ef-27017b93d121</ID>
<NotToShip>true</NotToShip>
<SID>9b4059d6-8b1b-4e0a-9acb-f185388f7960</SID>
<Weight>1</Weight>
</ShipmentSurveyOther>
</ArrayOfShipmentSurveyOther>