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": "38f43a1d-f6c7-43a2-a05e-c13d5e599ced", "TimePlayed": "2025-06-21T02:51:29.6856414+00:00", "UserID": "sample string 3", "GameID": "8ef3031a-9dfc-486d-b780-a2ee1f2fcd8a", "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": "ebaedf9f-da23-4575-92ef-ee3e6e26d3d2" }, { "GameTime": 1.1, "PicID": "ebaedf9f-da23-4575-92ef-ee3e6e26d3d2" } ] }
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>8ef3031a-9dfc-486d-b780-a2ee1f2fcd8a</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>ebaedf9f-da23-4575-92ef-ee3e6e26d3d2</d2p1:PicID> </d2p1:PictureClass> <d2p1:PictureClass> <d2p1:GameTime>1.1</d2p1:GameTime> <d2p1:PicID>ebaedf9f-da23-4575-92ef-ee3e6e26d3d2</d2p1:PicID> </d2p1:PictureClass> </Pictures> <Rank>12</Rank> <Score>11</Score> <TimePlayed>2025-06-21T02:51:29.6856414+00:00</TimePlayed> <TotalTime>5.1</TotalTime> <UserID>sample string 3</UserID> <UserzID>38f43a1d-f6c7-43a2-a05e-c13d5e599ced</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.