POST api/TempleCount
Request Information
URI Parameters
None.
Body Parameters
TempleCountName | Description | Type | Additional information |
---|---|---|---|
UserzID | globally unique identifier |
None. |
|
TimePlayed | date |
None. |
|
UserID | string |
None. |
|
GameID | globally unique identifier |
None. |
|
TotalTime | decimal number |
None. |
|
DiceRollCount | integer |
None. |
|
DiceSkippedCount | integer |
None. |
|
CorrectAnswersCount | integer |
None. |
|
BonusCount | integer |
None. |
|
PenaltyCount | integer |
None. |
|
Score | integer |
None. |
|
Rank | integer |
None. |
|
BoardSize | integer |
None. |
|
DidWin | boolean |
None. |
|
Hand | HandType_ |
None. |
|
Pictures | Collection of PictureClass |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserzID": "791173df-886f-4e69-a656-161452f38920", "TimePlayed": "2024-12-15T02:52:16.4226089+00:00", "UserID": "sample string 3", "GameID": "1433d42c-65e3-4f82-9bff-606b6173214b", "TotalTime": 5.1, "DiceRollCount": 6, "DiceSkippedCount": 7, "CorrectAnswersCount": 8, "BonusCount": 9, "PenaltyCount": 10, "Score": 11, "Rank": 12, "BoardSize": 13, "DidWin": true, "Hand": 0, "Pictures": [ { "GameTime": 1.1, "PicID": "059d8e35-a717-441e-94a6-8db053cfb990" }, { "GameTime": 1.1, "PicID": "059d8e35-a717-441e-94a6-8db053cfb990" } ] }
application/xml, text/xml
Sample:
<TempleCountController.TempleCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers"> <BoardSize>13</BoardSize> <BonusCount>9</BonusCount> <CorrectAnswersCount>8</CorrectAnswersCount> <DiceRollCount>6</DiceRollCount> <DiceSkippedCount>7</DiceSkippedCount> <DidWin>true</DidWin> <GameID>1433d42c-65e3-4f82-9bff-606b6173214b</GameID> <Hand>RIGHT</Hand> <PenaltyCount>10</PenaltyCount> <Pictures xmlns:d2p1="http://schemas.datacontract.org/2004/07/GameAPIV3.Models"> <d2p1:PictureClass> <d2p1:GameTime>1.1</d2p1:GameTime> <d2p1:PicID>059d8e35-a717-441e-94a6-8db053cfb990</d2p1:PicID> </d2p1:PictureClass> <d2p1:PictureClass> <d2p1:GameTime>1.1</d2p1:GameTime> <d2p1:PicID>059d8e35-a717-441e-94a6-8db053cfb990</d2p1:PicID> </d2p1:PictureClass> </Pictures> <Rank>12</Rank> <Score>11</Score> <TimePlayed>2024-12-15T02:52:16.4226089+00:00</TimePlayed> <TotalTime>5.1</TotalTime> <UserID>sample string 3</UserID> <UserzID>791173df-886f-4e69-a656-161452f38920</UserzID> </TempleCountController.TempleCount>
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.