GET api/Matches?CompCode={CompCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CompCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
MatchDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| MatchType | string |
None. |
|
| MatchNo | integer |
None. |
|
| Red1 | integer |
None. |
|
| Red2 | integer |
None. |
|
| Red3 | integer |
None. |
|
| Blue1 | integer |
None. |
|
| Blue2 | integer |
None. |
|
| Blue3 | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"MatchType": "sample string 1",
"MatchNo": 2,
"Red1": 3,
"Red2": 4,
"Red3": 5,
"Blue1": 6,
"Blue2": 7,
"Blue3": 8
}
application/xml, text/xml
Sample:
<MatchDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fires2024API.Models"> <Blue1>6</Blue1> <Blue2>7</Blue2> <Blue3>8</Blue3> <MatchNo>2</MatchNo> <MatchType>sample string 1</MatchType> <Red1>3</Red1> <Red2>4</Red2> <Red3>5</Red3> </MatchDTO>