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": "b40e064a-1e5d-4988-a475-1dcca6dc5fd1",
"TimePlayed": "2025-12-21T15:01:57.513237+00:00",
"GameID": "a8def8d4-948e-470d-bde3-23e07b3a8213",
"TotalTime": 4.1,
"TeamScore": 5,
"PlayerScore": 6,
"Current": 7,
"Level": 8,
"WrongHits": 9,
"HitRate": 10.1,
"Hand": 0,
"Pictures": [
{
"GameTime": 1.1,
"PicID": "11c7f9ce-964d-4c67-a74f-78e1582027a6"
},
{
"GameTime": 1.1,
"PicID": "11c7f9ce-964d-4c67-a74f-78e1582027a6"
}
]
}
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>a8def8d4-948e-470d-bde3-23e07b3a8213</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>11c7f9ce-964d-4c67-a74f-78e1582027a6</d2p1:PicID>
</d2p1:PictureClass>
<d2p1:PictureClass>
<d2p1:GameTime>1.1</d2p1:GameTime>
<d2p1:PicID>11c7f9ce-964d-4c67-a74f-78e1582027a6</d2p1:PicID>
</d2p1:PictureClass>
</Pictures>
<PlayerScore>6</PlayerScore>
<TeamScore>5</TeamScore>
<TimePlayed>2025-12-21T15:01:57.513237+00:00</TimePlayed>
<TotalTime>4.1</TotalTime>
<UserzID>b40e064a-1e5d-4988-a475-1dcca6dc5fd1</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.