GET v1/take/questionEssays/{id}
Return a Take Question - Multiple Choice, Single Select A Take Question - Multiple Choice, Single Select contains the question, the available answers, and the selected answer
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TakeQuestionEssay| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| Html | string |
None. |
|
| AnsweredWith | string |
None. |
Response Codes
- 200 OK: A Question - Essay for the Take returned successfully
- 401 Unauthorized:
- 500 InternalServerError:
Response Formats
application/json, text/json
Sample:
{
"Id": "sample string 1",
"Html": "sample string 2",
"AnsweredWith": "sample string 3"
}
text/html
Sample:
{"Id":"sample string 1","Html":"sample string 2","AnsweredWith":"sample string 3"}
application/xml, text/xml
Sample:
<TakeQuestionEssay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ITAGroup.Questionnaire.Api.Contracts.v1.Models"> <AnsweredWith>sample string 3</AnsweredWith> <Html>sample string 2</Html> <Id>sample string 1</Id> </TakeQuestionEssay>