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 ShipmentSurveyOtherName | 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": "4fb76b68-151c-49dc-8c28-7b1ba195c49b", "SID": "5125a985-6ee6-4200-b3c8-ad011e7b5280", "Description": "sample string 3", "Weight": 1, "NotToShip": true }, { "ID": "4fb76b68-151c-49dc-8c28-7b1ba195c49b", "SID": "5125a985-6ee6-4200-b3c8-ad011e7b5280", "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>4fb76b68-151c-49dc-8c28-7b1ba195c49b</ID> <NotToShip>true</NotToShip> <SID>5125a985-6ee6-4200-b3c8-ad011e7b5280</SID> <Weight>1</Weight> </ShipmentSurveyOther> <ShipmentSurveyOther> <Description>sample string 3</Description> <ID>4fb76b68-151c-49dc-8c28-7b1ba195c49b</ID> <NotToShip>true</NotToShip> <SID>5125a985-6ee6-4200-b3c8-ad011e7b5280</SID> <Weight>1</Weight> </ShipmentSurveyOther> </ArrayOfShipmentSurveyOther>