POST api/TracingGamesV2/PostQuizData

Request Information

URI Parameters

None.

Body Parameters

TracingGamesV2QuizModel
NameDescriptionTypeAdditional information
UserzID

globally unique identifier

Required

Type

QuizType

Required

GameType

TracingGameType

Required

GivenTime

decimal number

Required

EngagedTime

decimal number

Required

NotEngagedTime

decimal number

Required

WaitTime

decimal number

Required

NoUserFoundTime

decimal number

Required

Completed

boolean

Required

CompletedOnFirstTry

boolean

Required

Attempts

integer

Required

Character

string

Required

LivesUsed

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "UserzID": "e8feb381-5da1-4136-b4d1-e23e2c618351",
  "Type": 0,
  "GameType": 0,
  "GivenTime": 2.1,
  "EngagedTime": 3.1,
  "NotEngagedTime": 4.1,
  "WaitTime": 5.1,
  "NoUserFoundTime": 6.1,
  "Completed": true,
  "CompletedOnFirstTry": true,
  "Attempts": 9,
  "Character": "sample string 10",
  "LivesUsed": 11
}

application/xml, text/xml

Sample:
<TracingGamesV2QuizModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers">
  <Attempts>9</Attempts>
  <Character>sample string 10</Character>
  <Completed>true</Completed>
  <CompletedOnFirstTry>true</CompletedOnFirstTry>
  <EngagedTime>3.1</EngagedTime>
  <GameType>CapitalAlphabets</GameType>
  <GivenTime>2.1</GivenTime>
  <LivesUsed>11</LivesUsed>
  <NoUserFoundTime>6.1</NoUserFoundTime>
  <NotEngagedTime>4.1</NotEngagedTime>
  <Type>Sound</Type>
  <UserzID>e8feb381-5da1-4136-b4d1-e23e2c618351</UserzID>
  <WaitTime>5.1</WaitTime>
</TracingGamesV2QuizModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.