POST api/TracingGames

Request Information

URI Parameters

None.

Body Parameters

TracingGames
NameDescriptionTypeAdditional 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": "1bfb72a9-8a5e-4545-9d6c-c1116380dc54",
  "TimePlayed": "2024-12-15T02:38:04.9030433+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>2024-12-15T02:38:04.9030433+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>1bfb72a9-8a5e-4545-9d6c-c1116380dc54</UserzID>
</TracingGamesController.TracingGames>

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.