GET api/ShipmentSurveyItems/{id}?CategoryID={CategoryID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CategoryID | globally unique identifier |
Required |
|
| id | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ShipmentSurveyItem| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| CID | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Qty | decimal number |
None. |
|
| Cubes | decimal number |
None. |
|
| Density | decimal number |
None. |
|
| Note | string |
None. |
|
| NotToShip | boolean |
None. |
|
| Weight | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": "83494b7c-8ec8-4c74-87e3-a4fd42500f77",
"CID": "88a853e8-5e1f-4dc9-8cf7-3bf01403942e",
"Name": "sample string 3",
"Qty": 1.1,
"Cubes": 1.1,
"Density": 1.1,
"Note": "sample string 4",
"NotToShip": true,
"Weight": 1
},
{
"ID": "83494b7c-8ec8-4c74-87e3-a4fd42500f77",
"CID": "88a853e8-5e1f-4dc9-8cf7-3bf01403942e",
"Name": "sample string 3",
"Qty": 1.1,
"Cubes": 1.1,
"Density": 1.1,
"Note": "sample string 4",
"NotToShip": true,
"Weight": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfShipmentSurveyItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models">
<ShipmentSurveyItem>
<CID>88a853e8-5e1f-4dc9-8cf7-3bf01403942e</CID>
<Cubes>1.1</Cubes>
<Density>1.1</Density>
<ID>83494b7c-8ec8-4c74-87e3-a4fd42500f77</ID>
<Name>sample string 3</Name>
<NotToShip>true</NotToShip>
<Note>sample string 4</Note>
<Qty>1.1</Qty>
<Weight>1</Weight>
</ShipmentSurveyItem>
<ShipmentSurveyItem>
<CID>88a853e8-5e1f-4dc9-8cf7-3bf01403942e</CID>
<Cubes>1.1</Cubes>
<Density>1.1</Density>
<ID>83494b7c-8ec8-4c74-87e3-a4fd42500f77</ID>
<Name>sample string 3</Name>
<NotToShip>true</NotToShip>
<Note>sample string 4</Note>
<Qty>1.1</Qty>
<Weight>1</Weight>
</ShipmentSurveyItem>
</ArrayOfShipmentSurveyItem>