GET api/GetAllClosedEvaluationQuestions

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of EvaluationQuestion
NameDescriptionTypeAdditional information
Id

integer

None.

IsOpened

boolean

None.

Sequence

integer

Required

Range: inclusive between 1 and 2147483647

Question

string

None.

EvaluationCategory

EvaluationCategory

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "IsOpened": true,
    "Sequence": 3,
    "Question": "sample string 4",
    "EvaluationCategory": {
      "Id": 1,
      "Label": "sample string 2",
      "Sequence": 1
    }
  },
  {
    "Id": 1,
    "IsOpened": true,
    "Sequence": 3,
    "Question": "sample string 4",
    "EvaluationCategory": {
      "Id": 1,
      "Label": "sample string 2",
      "Sequence": 1
    }
  }
]

application/xml, text/xml

Sample:
<ArrayOfEvaluationQuestion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Models">
  <EvaluationQuestion>
    <EvaluationCategory>
      <Id>1</Id>
      <Label>sample string 2</Label>
      <Sequence>1</Sequence>
    </EvaluationCategory>
    <Id>1</Id>
    <IsOpened>true</IsOpened>
    <Question>sample string 4</Question>
    <Sequence>3</Sequence>
  </EvaluationQuestion>
  <EvaluationQuestion>
    <EvaluationCategory>
      <Id>1</Id>
      <Label>sample string 2</Label>
      <Sequence>1</Sequence>
    </EvaluationCategory>
    <Id>1</Id>
    <IsOpened>true</IsOpened>
    <Question>sample string 4</Question>
    <Sequence>3</Sequence>
  </EvaluationQuestion>
</ArrayOfEvaluationQuestion>