GET api/v{version}/season/{id}/highfinishes

Get the high finishes of a season.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

version

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ScoreViewModel
NameDescriptionTypeAdditional 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>