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": "f1c66393-9731-473b-80b2-bd45c69b43ab",
"TimePlayed": "2025-12-21T15:05:48.6803597+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-12-21T15:05:48.6803597+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>f1c66393-9731-473b-80b2-bd45c69b43ab</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.