GET api/Season/{season}/{seriesId}/Schedule
Get a collection of events for a given Season and Series ID.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
season |
4 digit year representing the Season |
string |
Required |
seriesId |
Series/Tour ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EventHeaderName | Description | Type | Additional information |
---|---|---|---|
Title |
Event Title |
string |
None. |
Location |
Event Location city and state |
string |
None. |
CountryCode |
Event Location country code (ISO 3166-1 alpha-3) |
string |
None. |
StartDate |
Event start date |
date |
None. |
EndDate |
Event end date |
date |
None. |
Season |
Season (4 digit year) |
string |
None. |
SeriesName |
Full name of the Series/Tour |
string |
None. |
EventType |
Code/short-name of the Event Type |
string |
None. |
VenueName |
Venue name |
string |
None. |
PerformanceDates |
Collection of dates and start times for each day of the event |
Collection of date |
None. |
PerformanceDatesTZ |
Collection of dates and start times for each day of the event including the UTC Offset for the time zone |
Collection of date |
None. |
EventID |
Unique identifier for the Event |
integer |
None. |
Status |
Event Status (Published / In-Progress / Scored / Official / Canceled) |
string |
None. |
SeriesID |
Unique identifier of the Series/Tour |
integer |
None. |
SeriesCode |
Code/short-name of the Series/Tour |
string |
None. |
Response Formats
application/json, text/json
[ { "EventID": 10, "Status": "sample string 11", "Title": "sample string 1", "Location": "sample string 2", "CountryCode": "sample string 3", "StartDate": "2024-09-07T04:18:26.7208492-07:00", "EndDate": "2024-09-07T04:18:26.7208492-07:00", "Season": "sample string 6", "SeriesID": 12, "SeriesCode": "sample string 13", "SeriesName": "sample string 7", "EventType": "sample string 8", "VenueName": "sample string 9", "PerformanceDates": [ "2024-09-07T04:18:26.7208492-07:00", "2024-09-07T04:18:26.7208492-07:00" ], "PerformanceDatesTZ": [ "2024-09-07T04:18:26.7208492-07:00", "2024-09-07T04:18:26.7208492-07:00" ] }, { "EventID": 10, "Status": "sample string 11", "Title": "sample string 1", "Location": "sample string 2", "CountryCode": "sample string 3", "StartDate": "2024-09-07T04:18:26.7208492-07:00", "EndDate": "2024-09-07T04:18:26.7208492-07:00", "Season": "sample string 6", "SeriesID": 12, "SeriesCode": "sample string 13", "SeriesName": "sample string 7", "EventType": "sample string 8", "VenueName": "sample string 9", "PerformanceDates": [ "2024-09-07T04:18:26.7208492-07:00", "2024-09-07T04:18:26.7208492-07:00" ], "PerformanceDatesTZ": [ "2024-09-07T04:18:26.7208492-07:00", "2024-09-07T04:18:26.7208492-07:00" ] } ]