POST api/EstimateCrate

Request Information

URI Parameters

None.

Body Parameters

EstimateCrate
NameDescriptionTypeAdditional information
ID

globally unique identifier

None.

EstID

globally unique identifier

None.

Amount

decimal number

None.

Rate

decimal number

None.

length

integer

None.

width

integer

None.

height

integer

None.

cubicfeet

integer

None.

tariffitem

string

None.

gcodeno

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": "502d077d-38d1-4b95-800a-e73fa691f6e2",
  "EstID": "aed21c1e-1ca9-45f8-858f-89c1832d28fc",
  "Amount": 1.0,
  "Rate": 1.0,
  "length": 1,
  "width": 1,
  "height": 1,
  "cubicfeet": 1,
  "tariffitem": "sample string 2",
  "gcodeno": 1
}

application/xml, text/xml

Sample:
<EstimateCrate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models">
  <Amount>1</Amount>
  <EstID>aed21c1e-1ca9-45f8-858f-89c1832d28fc</EstID>
  <ID>502d077d-38d1-4b95-800a-e73fa691f6e2</ID>
  <Rate>1</Rate>
  <cubicfeet>1</cubicfeet>
  <gcodeno>1</gcodeno>
  <height>1</height>
  <length>1</length>
  <tariffitem>sample string 2</tariffitem>
  <width>1</width>
</EstimateCrate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

EstimateCrate
NameDescriptionTypeAdditional information
ID

globally unique identifier

None.

EstID

globally unique identifier

None.

Amount

decimal number

None.

Rate

decimal number

None.

length

integer

None.

width

integer

None.

height

integer

None.

cubicfeet

integer

None.

tariffitem

string

None.

gcodeno

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": "7ea33e71-38ff-4f01-9e9c-6b3e212c810f",
  "EstID": "d3eb7563-7011-439c-a6a7-86ed387198f1",
  "Amount": 1.0,
  "Rate": 1.0,
  "length": 1,
  "width": 1,
  "height": 1,
  "cubicfeet": 1,
  "tariffitem": "sample string 2",
  "gcodeno": 1
}

application/xml, text/xml

Sample:
<EstimateCrate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models">
  <Amount>1</Amount>
  <EstID>d3eb7563-7011-439c-a6a7-86ed387198f1</EstID>
  <ID>7ea33e71-38ff-4f01-9e9c-6b3e212c810f</ID>
  <Rate>1</Rate>
  <cubicfeet>1</cubicfeet>
  <gcodeno>1</gcodeno>
  <height>1</height>
  <length>1</length>
  <tariffitem>sample string 2</tariffitem>
  <width>1</width>
</EstimateCrate>