GET api/v{version}/season/{id}/onehunderdandeight
Get the 180ers 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 ScoreCountViewModelName | Description | Type | Additional information |
---|---|---|---|
PlayerId | integer |
None. |
|
Name | string |
None. |
|
Count | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "PlayerId": 1, "Name": "sample string 2", "Count": 3 }, { "PlayerId": 1, "Name": "sample string 2", "Count": 3 } ]
application/xml, text/xml
Sample:
<ArrayOfScoreCountViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DartStat.Web.Areas.Apiv2.Models"> <ScoreCountViewModel> <Count>3</Count> <Name>sample string 2</Name> <PlayerId>1</PlayerId> </ScoreCountViewModel> <ScoreCountViewModel> <Count>3</Count> <Name>sample string 2</Name> <PlayerId>1</PlayerId> </ScoreCountViewModel> </ArrayOfScoreCountViewModel>