GET api/Season/{year}

Get a collection of available seasons for all Series/Tours for the given year.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
year

4 digit year representing the Season

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of SeasonModel
NameDescriptionTypeAdditional 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": "2024-07-07T19:38:53.140034-07:00",
    "EndDate": "2024-07-07T19:38:53.140034-07:00",
    "EventCount": 5
  },
  {
    "Season": "sample string 6",
    "SeriesID": 7,
    "SeriesCode": "sample string 1",
    "SeriesName": "sample string 2",
    "StartDate": "2024-07-07T19:38:53.140034-07:00",
    "EndDate": "2024-07-07T19:38:53.140034-07:00",
    "EventCount": 5
  }
]