GET api/v{version}/season/{id}/highfinishes
Get the high finishes of a season.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
|
version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ScoreViewModelName | Description | Type | Additional information |
---|---|---|---|
PlayerId | integer |
None. |
|
Name | string |
None. |
|
Score | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "PlayerId": 1, "Name": "sample string 2", "Score": 3 }, { "PlayerId": 1, "Name": "sample string 2", "Score": 3 } ]
application/xml, text/xml
Sample:
<ArrayOfScoreViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DartStat.Web.Areas.Apiv2.Models"> <ScoreViewModel> <Name>sample string 2</Name> <PlayerId>1</PlayerId> <Score>3</Score> </ScoreViewModel> <ScoreViewModel> <Name>sample string 2</Name> <PlayerId>1</PlayerId> <Score>3</Score> </ScoreViewModel> </ArrayOfScoreViewModel>