POST api/TracingGamesV2/PostQuizData
Request Information
URI Parameters
None.
Body Parameters
TracingGamesV2QuizModel| Name | Description | Type | Additional 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": "453b5e79-53e0-4e90-bd35-59ed0229e8fe",
"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>453b5e79-53e0-4e90-bd35-59ed0229e8fe</UserzID> <WaitTime>5.1</WaitTime> </TracingGamesV2QuizModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.