GET api/Question?performance={performance}&language={language}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
performance

boolean

Required

language

string

Default value is en

Body Parameters

None.

Response Information

Resource Description

Collection of EVALUATION_QUESTION
NameDescriptionTypeAdditional information
EVAL_ID

integer

None.

QUESTION_ID

integer

None.

QUESTION

string

None.

QUESTION_TYPE

byte

None.

QUESTION_ES

string

None.

QUESTION_VN

string

None.

QUESTION_BA

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "EVAL_ID": 1,
    "QUESTION_ID": 2,
    "QUESTION": "sample string 3",
    "QUESTION_TYPE": 64,
    "QUESTION_ES": "sample string 5",
    "QUESTION_VN": "sample string 6",
    "QUESTION_BA": "sample string 7"
  },
  {
    "EVAL_ID": 1,
    "QUESTION_ID": 2,
    "QUESTION": "sample string 3",
    "QUESTION_TYPE": 64,
    "QUESTION_ES": "sample string 5",
    "QUESTION_VN": "sample string 6",
    "QUESTION_BA": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEVALUATION_QUESTION xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">
  <EVALUATION_QUESTION>
    <EVAL_ID>1</EVAL_ID>
    <QUESTION>sample string 3</QUESTION>
    <QUESTION_BA>sample string 7</QUESTION_BA>
    <QUESTION_ES>sample string 5</QUESTION_ES>
    <QUESTION_ID>2</QUESTION_ID>
    <QUESTION_TYPE>64</QUESTION_TYPE>
    <QUESTION_VN>sample string 6</QUESTION_VN>
  </EVALUATION_QUESTION>
  <EVALUATION_QUESTION>
    <EVAL_ID>1</EVAL_ID>
    <QUESTION>sample string 3</QUESTION>
    <QUESTION_BA>sample string 7</QUESTION_BA>
    <QUESTION_ES>sample string 5</QUESTION_ES>
    <QUESTION_ID>2</QUESTION_ID>
    <QUESTION_TYPE>64</QUESTION_TYPE>
    <QUESTION_VN>sample string 6</QUESTION_VN>
  </EVALUATION_QUESTION>
</ArrayOfEVALUATION_QUESTION>