GET api/GamesDouble
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of GamesDouble| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Title | string |
None. |
|
| Note | string |
None. |
|
| Start | date |
None. |
|
| End | date |
None. |
|
| BookingCourtID | integer |
None. |
|
| Player1ID | integer |
None. |
|
| Player2ID | integer |
None. |
|
| Player3ID | integer |
None. |
|
| Player4ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Title": "sample string 2",
"Note": "sample string 3",
"Start": "2025-10-27T03:37:12.2436013+01:00",
"End": "2025-10-27T03:37:12.2436013+01:00",
"BookingCourtID": 6,
"Player1ID": 7,
"Player2ID": 8,
"Player3ID": 9,
"Player4ID": 10
},
{
"ID": 1,
"Title": "sample string 2",
"Note": "sample string 3",
"Start": "2025-10-27T03:37:12.2436013+01:00",
"End": "2025-10-27T03:37:12.2436013+01:00",
"BookingCourtID": 6,
"Player1ID": 7,
"Player2ID": 8,
"Player3ID": 9,
"Player4ID": 10
}
]
application/xml, text/xml
Sample:
<ArrayOfGamesDouble xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GRUBER.Tennis.App.Server.Models">
<GamesDouble>
<BookingCourtID>6</BookingCourtID>
<End>2025-10-27T03:37:12.2436013+01:00</End>
<ID>1</ID>
<Note>sample string 3</Note>
<Player1ID>7</Player1ID>
<Player2ID>8</Player2ID>
<Player3ID>9</Player3ID>
<Player4ID>10</Player4ID>
<Start>2025-10-27T03:37:12.2436013+01:00</Start>
<Title>sample string 2</Title>
</GamesDouble>
<GamesDouble>
<BookingCourtID>6</BookingCourtID>
<End>2025-10-27T03:37:12.2436013+01:00</End>
<ID>1</ID>
<Note>sample string 3</Note>
<Player1ID>7</Player1ID>
<Player2ID>8</Player2ID>
<Player3ID>9</Player3ID>
<Player4ID>10</Player4ID>
<Start>2025-10-27T03:37:12.2436013+01:00</Start>
<Title>sample string 2</Title>
</GamesDouble>
</ArrayOfGamesDouble>