GET api/proxy/footballmatches
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of MatchModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| Code | string |
None. |
|
| SportCode | string |
None. |
|
| SportTitle | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2",
"Code": "sample string 3",
"SportCode": "sample string 4",
"SportTitle": "sample string 5"
},
{
"Id": 1,
"Name": "sample string 2",
"Code": "sample string 3",
"SportCode": "sample string 4",
"SportTitle": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfMatchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Anthill.Geoff.Host.Models">
<MatchModel>
<Code>sample string 3</Code>
<Id>1</Id>
<Name>sample string 2</Name>
<SportCode>sample string 4</SportCode>
<SportTitle>sample string 5</SportTitle>
</MatchModel>
<MatchModel>
<Code>sample string 3</Code>
<Id>1</Id>
<Name>sample string 2</Name>
<SportCode>sample string 4</SportCode>
<SportTitle>sample string 5</SportTitle>
</MatchModel>
</ArrayOfMatchModel>