POST api/TimeTable
Request Information
URI Parameters
None.
Body Parameters
TimeTableName | 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": "155c3d98-8c72-40a1-a6bc-28e1f1496d9d", "TimePlayed": "2025-06-21T02:51:29.9896391+00:00", "GameID": "0ebb54a2-0cb0-486d-a83b-d78899d25fe6", "TotalTime": 4.1, "TeamScore": 5, "PlayerScore": 6, "Current": 7, "Level": 8, "WrongHits": 9, "HitRate": 10.1, "Hand": 0, "Pictures": [ { "GameTime": 1.1, "PicID": "9a730957-3785-40c3-b11e-94dd8d0f7969" }, { "GameTime": 1.1, "PicID": "9a730957-3785-40c3-b11e-94dd8d0f7969" } ] }
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>0ebb54a2-0cb0-486d-a83b-d78899d25fe6</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>9a730957-3785-40c3-b11e-94dd8d0f7969</d2p1:PicID> </d2p1:PictureClass> <d2p1:PictureClass> <d2p1:GameTime>1.1</d2p1:GameTime> <d2p1:PicID>9a730957-3785-40c3-b11e-94dd8d0f7969</d2p1:PicID> </d2p1:PictureClass> </Pictures> <PlayerScore>6</PlayerScore> <TeamScore>5</TeamScore> <TimePlayed>2025-06-21T02:51:29.9896391+00:00</TimePlayed> <TotalTime>4.1</TotalTime> <UserzID>155c3d98-8c72-40a1-a6bc-28e1f1496d9d</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.