POST api/TracingGamesV2/PostGameData
Request Information
URI Parameters
None.
Body Parameters
TracingGamesV2Model| Name | Description | Type | Additional information |
|---|---|---|---|
| UserzID | globally unique identifier |
Required |
|
| Type | TracingGameType |
Required |
|
| GameData | Collection of TracingGameData |
Required |
Request Formats
application/json, text/json
Sample:
{
"UserzID": "471088e4-b2d3-47ec-8734-2722db6c2665",
"Type": 0,
"GameData": [
{
"TotalStrokes": 1,
"CompletedStrokes": 2,
"WaitTime": 3.1,
"NoUserFoundTime": 4.1,
"NotEngagedTime": 5.1,
"EngagedTime": 6.1,
"PauseTime": 7.1,
"PauseClick": 8,
"WasSkipped": true,
"Character": "sample string 10"
},
{
"TotalStrokes": 1,
"CompletedStrokes": 2,
"WaitTime": 3.1,
"NoUserFoundTime": 4.1,
"NotEngagedTime": 5.1,
"EngagedTime": 6.1,
"PauseTime": 7.1,
"PauseClick": 8,
"WasSkipped": true,
"Character": "sample string 10"
}
]
}
application/xml, text/xml
Sample:
<TracingGamesV2Model xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers">
<GameData>
<TracingGameData>
<Character>sample string 10</Character>
<CompletedStrokes>2</CompletedStrokes>
<EngagedTime>6.1</EngagedTime>
<NoUserFoundTime>4.1</NoUserFoundTime>
<NotEngagedTime>5.1</NotEngagedTime>
<PauseClick>8</PauseClick>
<PauseTime>7.1</PauseTime>
<TotalStrokes>1</TotalStrokes>
<WaitTime>3.1</WaitTime>
<WasSkipped>true</WasSkipped>
</TracingGameData>
<TracingGameData>
<Character>sample string 10</Character>
<CompletedStrokes>2</CompletedStrokes>
<EngagedTime>6.1</EngagedTime>
<NoUserFoundTime>4.1</NoUserFoundTime>
<NotEngagedTime>5.1</NotEngagedTime>
<PauseClick>8</PauseClick>
<PauseTime>7.1</PauseTime>
<TotalStrokes>1</TotalStrokes>
<WaitTime>3.1</WaitTime>
<WasSkipped>true</WasSkipped>
</TracingGameData>
</GameData>
<Type>CapitalAlphabets</Type>
<UserzID>471088e4-b2d3-47ec-8734-2722db6c2665</UserzID>
</TracingGamesV2Model>
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.