GET api/Question/{id}?typeId={typeId}&language={language}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
|
typeId | byte |
Required |
|
language | string |
Default value is en |
Body Parameters
None.
Response Information
Resource Description
EVALUATION_QUESTIONName | Description | Type | Additional 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" }
application/xml, text/xml
Sample:
<EVALUATION_QUESTION xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models"> <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>