GET api/surveyitemlist

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SurveyItemList
NameDescriptionTypeAdditional information
ID

globally unique identifier

None.

Category

string

None.

Name

string

None.

Cubes

decimal number

None.

Density

decimal number

None.

Weight

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": "cf8ddcda-f2c8-4810-a289-21fdc9c6d3bd",
    "Category": "sample string 2",
    "Name": "sample string 3",
    "Cubes": 1.1,
    "Density": 1.1,
    "Weight": 1.1
  },
  {
    "ID": "cf8ddcda-f2c8-4810-a289-21fdc9c6d3bd",
    "Category": "sample string 2",
    "Name": "sample string 3",
    "Cubes": 1.1,
    "Density": 1.1,
    "Weight": 1.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfSurveyItemList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models">
  <SurveyItemList>
    <Category>sample string 2</Category>
    <Cubes>1.1</Cubes>
    <Density>1.1</Density>
    <ID>cf8ddcda-f2c8-4810-a289-21fdc9c6d3bd</ID>
    <Name>sample string 3</Name>
    <Weight>1.1</Weight>
  </SurveyItemList>
  <SurveyItemList>
    <Category>sample string 2</Category>
    <Cubes>1.1</Cubes>
    <Density>1.1</Density>
    <ID>cf8ddcda-f2c8-4810-a289-21fdc9c6d3bd</ID>
    <Name>sample string 3</Name>
    <Weight>1.1</Weight>
  </SurveyItemList>
</ArrayOfSurveyItemList>