POST api/TempleCount
Request Information
URI Parameters
None.
Body Parameters
TempleCount| Name | 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": "f760f27a-143b-4a08-9e0c-a75c468feda0",
"TimePlayed": "2025-11-05T10:40:54.4542034+00:00",
"UserID": "sample string 3",
"GameID": "8e825773-c28c-497b-a494-6c26cadeb315",
"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": "d947be24-f97f-46d7-9034-272c6036f7fe"
},
{
"GameTime": 1.1,
"PicID": "d947be24-f97f-46d7-9034-272c6036f7fe"
}
]
}
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>8e825773-c28c-497b-a494-6c26cadeb315</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>d947be24-f97f-46d7-9034-272c6036f7fe</d2p1:PicID>
</d2p1:PictureClass>
<d2p1:PictureClass>
<d2p1:GameTime>1.1</d2p1:GameTime>
<d2p1:PicID>d947be24-f97f-46d7-9034-272c6036f7fe</d2p1:PicID>
</d2p1:PictureClass>
</Pictures>
<Rank>12</Rank>
<Score>11</Score>
<TimePlayed>2025-11-05T10:40:54.4542034+00:00</TimePlayed>
<TotalTime>5.1</TotalTime>
<UserID>sample string 3</UserID>
<UserzID>f760f27a-143b-4a08-9e0c-a75c468feda0</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.