PUT api/ShipmentSurveyItem/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
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. |
Request Formats
application/json, text/json
Sample:
{
"ID": "8c641e24-c03e-4413-96e9-05404668f9c2",
"CID": "8a01186d-7ff5-474b-89a9-9d6b8d46082e",
"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:
<ShipmentSurveyItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models"> <CID>8a01186d-7ff5-474b-89a9-9d6b8d46082e</CID> <Cubes>1.1</Cubes> <Density>1.1</Density> <ID>8c641e24-c03e-4413-96e9-05404668f9c2</ID> <Name>sample string 3</Name> <NotToShip>true</NotToShip> <Note>sample string 4</Note> <Qty>1.1</Qty> <Weight>1</Weight> </ShipmentSurveyItem>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.