POST api/TracingGames
Request Information
URI Parameters
None.
Body Parameters
TracingGames| Name | Description | Type | Additional information |
|---|---|---|---|
| UserzID | globally unique identifier |
None. |
|
| TimePlayed | date |
None. |
|
| UserID | string |
None. |
|
| Type | TracingGameTypeModel |
None. |
|
| TotalAttempts | integer |
None. |
|
| TotalChars | integer |
None. |
|
| TotalTime | integer |
None. |
|
| ActualAttempts | integer |
None. |
|
| TotalSkipped | integer |
None. |
|
| TotalSucess | integer |
None. |
|
| AverageAttemptswithActualAttempts | integer |
None. |
|
| CharsAttemptJson | Collection of CharsAttempt |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserzID": "21d2c2a4-8f56-4ae3-a6ac-5f2d11c86a8e",
"TimePlayed": "2025-11-05T10:42:38.1700743+00:00",
"UserID": "sample string 3",
"Type": 0,
"TotalAttempts": 4,
"TotalChars": 5,
"TotalTime": 6,
"ActualAttempts": 7,
"TotalSkipped": 8,
"TotalSucess": 9,
"AverageAttemptswithActualAttempts": 10,
"CharsAttemptJson": [
{
"TracingCharName": "sample string 1",
"TotalAttempts": 2,
"TotalTime": 3,
"StrokesNeeded": 4,
"Skipped": true
},
{
"TracingCharName": "sample string 1",
"TotalAttempts": 2,
"TotalTime": 3,
"StrokesNeeded": 4,
"Skipped": true
}
]
}
application/xml, text/xml
Sample:
<TracingGamesController.TracingGames xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers">
<ActualAttempts>7</ActualAttempts>
<AverageAttemptswithActualAttempts>10</AverageAttemptswithActualAttempts>
<CharsAttemptJson>
<TracingGamesController.CharsAttempt>
<Skipped>true</Skipped>
<StrokesNeeded>4</StrokesNeeded>
<TotalAttempts>2</TotalAttempts>
<TotalTime>3</TotalTime>
<TracingCharName>sample string 1</TracingCharName>
</TracingGamesController.CharsAttempt>
<TracingGamesController.CharsAttempt>
<Skipped>true</Skipped>
<StrokesNeeded>4</StrokesNeeded>
<TotalAttempts>2</TotalAttempts>
<TotalTime>3</TotalTime>
<TracingCharName>sample string 1</TracingCharName>
</TracingGamesController.CharsAttempt>
</CharsAttemptJson>
<TimePlayed>2025-11-05T10:42:38.1700743+00:00</TimePlayed>
<TotalAttempts>4</TotalAttempts>
<TotalChars>5</TotalChars>
<TotalSkipped>8</TotalSkipped>
<TotalSucess>9</TotalSucess>
<TotalTime>6</TotalTime>
<Type>CapitalAlphabets</Type>
<UserID>sample string 3</UserID>
<UserzID>21d2c2a4-8f56-4ae3-a6ac-5f2d11c86a8e</UserzID>
</TracingGamesController.TracingGames>
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.