POST api/RandomChallengeQuestions

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
request
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json, text/html

Sample:
{
  "ShowChallengeQuestionsNextTime": 1,
  "Answers": [
    {
      "QuestionID": 1,
      "AnswerText": "sample string 2"
    },
    {
      "QuestionID": 1,
      "AnswerText": "sample string 2"
    },
    {
      "QuestionID": 1,
      "AnswerText": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<ChallengeQuestionsAnswers xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/e2eMobileAPI.Models.Requests">
  <Answers xmlns:d2p1="http://schemas.datacontract.org/2004/07/BusinessEntities">
    <d2p1:Answer>
      <d2p1:AnswerText>sample string 2</d2p1:AnswerText>
      <d2p1:QuestionID>1</d2p1:QuestionID>
    </d2p1:Answer>
    <d2p1:Answer>
      <d2p1:AnswerText>sample string 2</d2p1:AnswerText>
      <d2p1:QuestionID>1</d2p1:QuestionID>
    </d2p1:Answer>
    <d2p1:Answer>
      <d2p1:AnswerText>sample string 2</d2p1:AnswerText>
      <d2p1:QuestionID>1</d2p1:QuestionID>
    </d2p1:Answer>
  </Answers>
  <ShowChallengeQuestionsNextTime>1</ShowChallengeQuestionsNextTime>
</ChallengeQuestionsAnswers>

application/x-www-form-urlencoded

Sample:

Sample not available.