GET api/surveyquestionlist

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SurveyQuestionList
NameDescriptionTypeAdditional information
ID

globally unique identifier

None.

Name

string

None.

SortVal

integer

None.

ShipmentField

string

None.

AddToCategory

string

None.

Web

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": "627dc9cf-ab99-40a7-a41c-029f2b6b88d6",
    "Name": "sample string 2",
    "SortVal": 1,
    "ShipmentField": "sample string 3",
    "AddToCategory": "sample string 4",
    "Web": true
  },
  {
    "ID": "627dc9cf-ab99-40a7-a41c-029f2b6b88d6",
    "Name": "sample string 2",
    "SortVal": 1,
    "ShipmentField": "sample string 3",
    "AddToCategory": "sample string 4",
    "Web": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfSurveyQuestionList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models">
  <SurveyQuestionList>
    <AddToCategory>sample string 4</AddToCategory>
    <ID>627dc9cf-ab99-40a7-a41c-029f2b6b88d6</ID>
    <Name>sample string 2</Name>
    <ShipmentField>sample string 3</ShipmentField>
    <SortVal>1</SortVal>
    <Web>true</Web>
  </SurveyQuestionList>
  <SurveyQuestionList>
    <AddToCategory>sample string 4</AddToCategory>
    <ID>627dc9cf-ab99-40a7-a41c-029f2b6b88d6</ID>
    <Name>sample string 2</Name>
    <ShipmentField>sample string 3</ShipmentField>
    <SortVal>1</SortVal>
    <Web>true</Web>
  </SurveyQuestionList>
</ArrayOfSurveyQuestionList>