PUT api/ShipmentSurveyCategory/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
ShipmentSurveyCategory| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| SID | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Cubes | decimal number |
None. |
|
| Density | decimal number |
None. |
|
| Note | string |
None. |
|
| Weight | integer |
None. |
|
| ClassName | string |
None. |
|
| ShipmentSurveyItems | Collection of ShipmentSurveyItem |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": "caf497df-b1f7-4596-a0b6-b1c77e3fafbe",
"SID": "e66cb30d-975d-4fd0-af0a-2e0318275405",
"Name": "sample string 3",
"Cubes": 1.1,
"Density": 1.1,
"Note": "sample string 4",
"Weight": 1,
"ClassName": "sample string 5",
"ShipmentSurveyItems": [
{
"ID": "cf9ebcc6-ecf0-4454-b157-877a2ac2e7b6",
"CID": "fbc93a48-08a6-4f46-a1f9-a63504c03c2b",
"Name": "sample string 3",
"Qty": 1.1,
"Cubes": 1.1,
"Density": 1.1,
"Note": "sample string 4",
"NotToShip": true,
"Weight": 1
},
{
"ID": "cf9ebcc6-ecf0-4454-b157-877a2ac2e7b6",
"CID": "fbc93a48-08a6-4f46-a1f9-a63504c03c2b",
"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:
<ShipmentSurveyCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models">
<ClassName>sample string 5</ClassName>
<Cubes>1.1</Cubes>
<Density>1.1</Density>
<ID>caf497df-b1f7-4596-a0b6-b1c77e3fafbe</ID>
<Name>sample string 3</Name>
<Note>sample string 4</Note>
<SID>e66cb30d-975d-4fd0-af0a-2e0318275405</SID>
<ShipmentSurveyItems>
<ShipmentSurveyItem>
<CID>fbc93a48-08a6-4f46-a1f9-a63504c03c2b</CID>
<Cubes>1.1</Cubes>
<Density>1.1</Density>
<ID>cf9ebcc6-ecf0-4454-b157-877a2ac2e7b6</ID>
<Name>sample string 3</Name>
<NotToShip>true</NotToShip>
<Note>sample string 4</Note>
<Qty>1.1</Qty>
<Weight>1</Weight>
</ShipmentSurveyItem>
<ShipmentSurveyItem>
<CID>fbc93a48-08a6-4f46-a1f9-a63504c03c2b</CID>
<Cubes>1.1</Cubes>
<Density>1.1</Density>
<ID>cf9ebcc6-ecf0-4454-b157-877a2ac2e7b6</ID>
<Name>sample string 3</Name>
<NotToShip>true</NotToShip>
<Note>sample string 4</Note>
<Qty>1.1</Qty>
<Weight>1</Weight>
</ShipmentSurveyItem>
</ShipmentSurveyItems>
<Weight>1</Weight>
</ShipmentSurveyCategory>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.