POST api/ShipmentSurveyItem
Request Information
URI Parameters
None.
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": "d93705ed-bc33-4f77-a39b-c07c5b626bbe",
"CID": "6c1bd88a-6ae0-4908-b00d-cc30f8afc7cf",
"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>6c1bd88a-6ae0-4908-b00d-cc30f8afc7cf</CID> <Cubes>1.1</Cubes> <Density>1.1</Density> <ID>d93705ed-bc33-4f77-a39b-c07c5b626bbe</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
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": "4fb18c2c-a1b9-465f-90ac-8e04aedec6db",
"CID": "d28ac2c1-a08c-46c8-b67e-2ea4a2f73b8b",
"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>d28ac2c1-a08c-46c8-b67e-2ea4a2f73b8b</CID> <Cubes>1.1</Cubes> <Density>1.1</Density> <ID>4fb18c2c-a1b9-465f-90ac-8e04aedec6db</ID> <Name>sample string 3</Name> <NotToShip>true</NotToShip> <Note>sample string 4</Note> <Qty>1.1</Qty> <Weight>1</Weight> </ShipmentSurveyItem>