POST api/TimeTable
Request Information
URI Parameters
None.
Body Parameters
TimeTable| Name | Description | Type | Additional information |
|---|---|---|---|
| UserzID | globally unique identifier |
None. |
|
| TimePlayed | date |
None. |
|
| GameID | globally unique identifier |
None. |
|
| TotalTime | decimal number |
None. |
|
| TeamScore | integer |
None. |
|
| PlayerScore | integer |
None. |
|
| Current | integer |
None. |
|
| Level | integer |
None. |
|
| WrongHits | integer |
None. |
|
| HitRate | decimal number |
None. |
|
| Hand | TimeTableHandType |
None. |
|
| Pictures | Collection of PictureClass |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserzID": "742b54a4-0f23-48a4-ad35-5d507bc1788d",
"TimePlayed": "2025-11-05T10:38:50.2059361+00:00",
"GameID": "09b9926a-52b8-4d1f-b950-b7445c9eee11",
"TotalTime": 4.1,
"TeamScore": 5,
"PlayerScore": 6,
"Current": 7,
"Level": 8,
"WrongHits": 9,
"HitRate": 10.1,
"Hand": 0,
"Pictures": [
{
"GameTime": 1.1,
"PicID": "4149f911-c556-416b-82bf-25a9457af81c"
},
{
"GameTime": 1.1,
"PicID": "4149f911-c556-416b-82bf-25a9457af81c"
}
]
}
application/xml, text/xml
Sample:
<TimeTableController.TimeTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers">
<Current>7</Current>
<GameID>09b9926a-52b8-4d1f-b950-b7445c9eee11</GameID>
<Hand>RIGHT</Hand>
<HitRate>10.1</HitRate>
<Level>8</Level>
<Pictures xmlns:d2p1="http://schemas.datacontract.org/2004/07/GameAPIV3.Models">
<d2p1:PictureClass>
<d2p1:GameTime>1.1</d2p1:GameTime>
<d2p1:PicID>4149f911-c556-416b-82bf-25a9457af81c</d2p1:PicID>
</d2p1:PictureClass>
<d2p1:PictureClass>
<d2p1:GameTime>1.1</d2p1:GameTime>
<d2p1:PicID>4149f911-c556-416b-82bf-25a9457af81c</d2p1:PicID>
</d2p1:PictureClass>
</Pictures>
<PlayerScore>6</PlayerScore>
<TeamScore>5</TeamScore>
<TimePlayed>2025-11-05T10:38:50.2059361+00:00</TimePlayed>
<TotalTime>4.1</TotalTime>
<UserzID>742b54a4-0f23-48a4-ad35-5d507bc1788d</UserzID>
<WrongHits>9</WrongHits>
</TimeTableController.TimeTable>
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.