GET api/server/GetGameStatus?gameid={gameid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| gameid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
oGameStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| GameID | integer |
None. |
|
| StatusID | integer |
None. |
|
| GameStatus | string |
None. |
|
| GameStatusType | GameStatus |
None. |
|
| StartTime | date |
None. |
|
| EndTime | date |
None. |
|
| IsComplete | boolean |
None. |
|
| GameCode | string |
None. |
|
| RefID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"GameID": 1,
"StatusID": 2,
"GameStatus": "sample string 3",
"GameStatusType": 6,
"StartTime": "2026-01-01T21:19:49.2123254-08:00",
"EndTime": "2026-01-01T21:19:49.2123254-08:00",
"IsComplete": true,
"GameCode": "sample string 6",
"RefID": 7
}
application/xml, text/xml
Sample:
<oGameStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RG.Game"> <RefID xmlns="http://schemas.datacontract.org/2004/07/RG">7</RefID> <GameCode>sample string 6</GameCode> <EndTime>2026-01-01T21:19:49.2123254-08:00</EndTime> <GameID>1</GameID> <GameStatus>sample string 3</GameStatus> <IsComplete>true</IsComplete> <StartTime>2026-01-01T21:19:49.2123254-08:00</StartTime> <StatusID>2</StatusID> </oGameStatus>