GET api/Matches
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Match| Name | Description | Type | Additional information |
|---|---|---|---|
| MatchID | integer |
None. |
|
| Compcode | string |
String length: inclusive between 0 and 10 |
|
| MatchType | string |
String length: inclusive between 0 and 1 |
|
| MatchNo | integer |
None. |
|
| Red1 | integer |
None. |
|
| Red2 | integer |
None. |
|
| Red3 | integer |
None. |
|
| Blue1 | integer |
None. |
|
| Blue2 | integer |
None. |
|
| Blue3 | integer |
None. |
|
| SchedDateTime | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"MatchID": 1,
"Compcode": "sample string 2",
"MatchType": "sample string 3",
"MatchNo": 4,
"Red1": 5,
"Red2": 6,
"Red3": 7,
"Blue1": 8,
"Blue2": 9,
"Blue3": 10,
"SchedDateTime": "2025-12-06T12:16:49.3135832+00:00"
},
{
"MatchID": 1,
"Compcode": "sample string 2",
"MatchType": "sample string 3",
"MatchNo": 4,
"Red1": 5,
"Red2": 6,
"Red3": 7,
"Blue1": 8,
"Blue2": 9,
"Blue3": 10,
"SchedDateTime": "2025-12-06T12:16:49.3135832+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfMatch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fires2024API.Models">
<Match>
<Blue1>8</Blue1>
<Blue2>9</Blue2>
<Blue3>10</Blue3>
<Compcode>sample string 2</Compcode>
<MatchID>1</MatchID>
<MatchNo>4</MatchNo>
<MatchType>sample string 3</MatchType>
<Red1>5</Red1>
<Red2>6</Red2>
<Red3>7</Red3>
<SchedDateTime>2025-12-06T12:16:49.3135832+00:00</SchedDateTime>
</Match>
<Match>
<Blue1>8</Blue1>
<Blue2>9</Blue2>
<Blue3>10</Blue3>
<Compcode>sample string 2</Compcode>
<MatchID>1</MatchID>
<MatchNo>4</MatchNo>
<MatchType>sample string 3</MatchType>
<Red1>5</Red1>
<Red2>6</Red2>
<Red3>7</Red3>
<SchedDateTime>2025-12-06T12:16:49.3135832+00:00</SchedDateTime>
</Match>
</ArrayOfMatch>