Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of question types.

Collection of Pico.QuestionType
NameDescriptionTypeAdditional information
description

Gets or sets the description.

string

None.

displayType

Gets or sets the display type.

string

None.

isActive

Gets or sets a value indicating whether data type is active.

boolean

None.

type

Gets or sets the type.

string

None.

id

Gets or sets the question type identifier.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "description": "sample String 1",
    "displayType": "sample String 2",
    "isActive": true,
    "type": "sample String 4",
    "id": "5"
  },
  {
    "description": "sample String 1",
    "displayType": "sample String 2",
    "isActive": true,
    "type": "sample String 4",
    "id": "5"
  }
]

text/html

Sample:
[{"description":"sample String 1","displayType":"sample String 2","isActive":true,"type":"sample String 4","id":"5"},{"description":"sample String 1","displayType":"sample String 2","isActive":true,"type":"sample String 4","id":"5"}]

application/xml, text/xml

Sample:
<ArrayOfQuestionType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <QuestionType>
    <Description>sample String 1</Description>
    <DisplayType>sample String 2</DisplayType>
    <IsActive>true</IsActive>
    <Type>sample String 4</Type>
    <QuestionTypeId>5</QuestionTypeId>
  </QuestionType>
  <QuestionType>
    <Description>sample String 1</Description>
    <DisplayType>sample String 2</DisplayType>
    <IsActive>true</IsActive>
    <Type>sample String 4</Type>
    <QuestionTypeId>5</QuestionTypeId>
  </QuestionType>
</ArrayOfQuestionType>