GET api/v{version}/player/{id}/highfinishes
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
|
version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
PlayerHighFinishesViewModelName | Description | Type | Additional information |
---|---|---|---|
Highest | HighFinishesViewModel |
None. |
|
HighestMajor | HighFinishesViewModel |
None. |
|
HighestTV | HighFinishesViewModel |
None. |
|
HighestWorld | HighFinishesViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Highest": { "Finish": 1, "SeasonId": 2, "SeasonTitle": "sample string 3", "CompetitionId": 4, "CompetitionTitle": "sample string 5", "MatchId": 1 }, "HighestMajor": { "Finish": 1, "SeasonId": 2, "SeasonTitle": "sample string 3", "CompetitionId": 4, "CompetitionTitle": "sample string 5", "MatchId": 1 }, "HighestTV": { "Finish": 1, "SeasonId": 2, "SeasonTitle": "sample string 3", "CompetitionId": 4, "CompetitionTitle": "sample string 5", "MatchId": 1 }, "HighestWorld": { "Finish": 1, "SeasonId": 2, "SeasonTitle": "sample string 3", "CompetitionId": 4, "CompetitionTitle": "sample string 5", "MatchId": 1 } }
application/xml, text/xml
Sample:
<PlayerHighFinishesViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DartStat.Web.Areas.Apiv2.Models"> <Highest> <CompetitionId>4</CompetitionId> <CompetitionTitle>sample string 5</CompetitionTitle> <Finish>1</Finish> <SeasonId>2</SeasonId> <SeasonTitle>sample string 3</SeasonTitle> </Highest> <HighestMajor> <CompetitionId>4</CompetitionId> <CompetitionTitle>sample string 5</CompetitionTitle> <Finish>1</Finish> <SeasonId>2</SeasonId> <SeasonTitle>sample string 3</SeasonTitle> </HighestMajor> <HighestTV> <CompetitionId>4</CompetitionId> <CompetitionTitle>sample string 5</CompetitionTitle> <Finish>1</Finish> <SeasonId>2</SeasonId> <SeasonTitle>sample string 3</SeasonTitle> </HighestTV> </PlayerHighFinishesViewModel>