POST api/ShipmentSurveyItem

Request Information

URI Parameters

None.

Body Parameters

ShipmentSurveyItem
NameDescriptionTypeAdditional 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": "6c7e9451-2b00-4fed-b1d0-7afa8f3940fd",
  "CID": "841e476d-3e62-4d33-a989-72b7e57c40ff",
  "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>841e476d-3e62-4d33-a989-72b7e57c40ff</CID>
  <Cubes>1.1</Cubes>
  <Density>1.1</Density>
  <ID>6c7e9451-2b00-4fed-b1d0-7afa8f3940fd</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
NameDescriptionTypeAdditional 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": "4df361f1-029a-48ca-827f-60334cd77948",
  "CID": "e2a05b3c-b228-45e3-aaee-6f1cadb00c03",
  "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>e2a05b3c-b228-45e3-aaee-6f1cadb00c03</CID>
  <Cubes>1.1</Cubes>
  <Density>1.1</Density>
  <ID>4df361f1-029a-48ca-827f-60334cd77948</ID>
  <Name>sample string 3</Name>
  <NotToShip>true</NotToShip>
  <Note>sample string 4</Note>
  <Qty>1.1</Qty>
  <Weight>1</Weight>
</ShipmentSurveyItem>