GET api/Season/{year}
Get a collection of available seasons for all Series/Tours for the given year.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
year |
4 digit year representing the Season |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SeasonModelName | Description | Type | Additional information |
---|---|---|---|
SeriesCode |
Code/short-name of the Series/Tour |
string |
None. |
SeriesName |
Full name of the Series/Tour |
string |
None. |
StartDate |
Season start date |
date |
None. |
EndDate |
Season end date |
date |
None. |
EventCount |
Count of events linked to the Season |
integer |
None. |
Season |
Season (4 digit year) |
string |
None. |
SeriesID |
Unique identifier of the Series/Tour |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Season": "sample string 6", "SeriesID": 7, "SeriesCode": "sample string 1", "SeriesName": "sample string 2", "StartDate": "2025-03-22T12:26:37.8644657-07:00", "EndDate": "2025-03-22T12:26:37.8644657-07:00", "EventCount": 5 }, { "Season": "sample string 6", "SeriesID": 7, "SeriesCode": "sample string 1", "SeriesName": "sample string 2", "StartDate": "2025-03-22T12:26:37.8644657-07:00", "EndDate": "2025-03-22T12:26:37.8644657-07:00", "EventCount": 5 } ]