GET api/v{version}/season/{id}/player/{player}?playerId={playerId}
Obsolete: Get the information of a player for a certain season.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
|
playerId | integer |
Required |
|
version | string |
None. |
|
player | string |
None. |
Body Parameters
None.
Response Information
Resource Description
SeasonPlayerStatViewModelName | Description | Type | Additional information |
---|---|---|---|
FinishPercentage | decimal number |
None. |
|
HighFinish | integer |
None. |
|
TotalHits | integer |
None. |
|
TotalAttempts | integer |
None. |
|
Total180s | integer |
None. |
|
TotalMatches | integer |
None. |
|
Average | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{ "FinishPercentage": 1.1, "HighFinish": 2, "TotalHits": 3, "TotalAttempts": 4, "Total180s": 5, "TotalMatches": 6, "Average": 7.1 }
application/xml, text/xml
Sample:
<SeasonPlayerStatViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DartStat.Web.Areas.Apiv2.Models"> <Average>7.1</Average> <FinishPercentage>1.1</FinishPercentage> <HighFinish>2</HighFinish> <Total180s>5</Total180s> <TotalAttempts>4</TotalAttempts> <TotalHits>3</TotalHits> <TotalMatches>6</TotalMatches> </SeasonPlayerStatViewModel>