GET api/Talks?language={language}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| language | string |
Default value is en |
Body Parameters
Collection of integerRequest Formats
application/json, text/json
Sample:
[ 1, 2 ]
application/xml, text/xml
Sample:
<ArrayOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <int>1</int> <int>2</int> </ArrayOfint>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of QuestionModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| QuestionBody | string |
None. |
|
| Answer | AnswerModel |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"QuestionBody": "sample string 2",
"Answer": {
"Id": 1,
"Comment": "sample string 2",
"IsYes": true,
"QuestionId": 4,
"AnswerDate": "sample string 5"
}
},
{
"Id": 1,
"QuestionBody": "sample string 2",
"Answer": {
"Id": 1,
"Comment": "sample string 2",
"IsYes": true,
"QuestionId": 4,
"AnswerDate": "sample string 5"
}
}
]
application/xml, text/xml
Sample:
<ArrayOfQuestionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Icculus.Portal.Controllers.Phone">
<QuestionModel>
<Answer>
<AnswerDate>sample string 5</AnswerDate>
<Comment>sample string 2</Comment>
<Id>1</Id>
<IsYes>true</IsYes>
<QuestionId>4</QuestionId>
</Answer>
<Id>1</Id>
<QuestionBody>sample string 2</QuestionBody>
</QuestionModel>
<QuestionModel>
<Answer>
<AnswerDate>sample string 5</AnswerDate>
<Comment>sample string 2</Comment>
<Id>1</Id>
<IsYes>true</IsYes>
<QuestionId>4</QuestionId>
</Answer>
<Id>1</Id>
<QuestionBody>sample string 2</QuestionBody>
</QuestionModel>
</ArrayOfQuestionModel>