GET api/v{version}/core/season/{id}
Get the details of the season.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Season id |
integer |
Required |
version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
The details
SeasonDetailsCoreModelName | Description | Type | Additional information |
---|---|---|---|
SeasonId |
The unique id. |
integer |
None. |
Name |
Name of the season. |
string |
None. |
Sponsor |
The main sponsor. |
string |
None. |
Edition |
Edition |
integer |
None. |
VenueId |
Location where the games are/where played. |
integer |
None. |
PrizeMoney |
Total prize money. |
integer |
None. |
PrizeMoneyIndication |
Total prize money indication (without special prizes). |
integer |
None. |
PrizeCurrency |
The prize currency. |
string |
None. |
CompetitionId |
The related competition id. |
integer |
None. |
Schema |
Type of play schema. |
Schema |
None. |
Gender |
Gender information |
GenderGameType |
None. |
Status | string |
None. |
|
WithPairs |
Is this season played with Pairs. |
boolean |
None. |
StartDate |
Get or set the date the tournament is started. |
date |
None. |
EndDate |
Get or set the date the tournament is finished. |
date |
None. |
OnTv |
Was the season broadcasted on television. |
boolean |
None. |
OnWeb |
Season is streamed on the web. |
boolean |
None. |
Modified |
Last time the season is modified. |
date |
None. |
Response Formats
application/json, text/json
Sample:
{ "SeasonId": 1, "Name": "sample string 2", "Sponsor": "sample string 3", "Edition": 1, "VenueId": 1, "PrizeMoney": 1, "PrizeMoneyIndication": 1, "PrizeCurrency": "sample string 4", "CompetitionId": 1, "Schema": 0, "Gender": 0, "Status": "sample string 5", "WithPairs": true, "StartDate": "2023-09-30T04:13:45.4415829+02:00", "EndDate": "2023-09-30T04:13:45.4415829+02:00", "OnTv": true, "OnWeb": true, "Modified": "2023-09-30T04:13:45.4415829+02:00" }
application/xml, text/xml
Sample:
<SeasonDetailsCoreModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DartStat.Web.Areas.Apiv2.Models.Core"> <CompetitionId>1</CompetitionId> <Edition>1</Edition> <EndDate>2023-09-30T04:13:45.4415829+02:00</EndDate> <Gender>Men</Gender> <Modified>2023-09-30T04:13:45.4415829+02:00</Modified> <Name>sample string 2</Name> <OnTv>true</OnTv> <OnWeb>true</OnWeb> <PrizeCurrency>sample string 4</PrizeCurrency> <PrizeMoney>1</PrizeMoney> <PrizeMoneyIndication>1</PrizeMoneyIndication> <Schema>Knockout</Schema> <SeasonId>1</SeasonId> <Sponsor>sample string 3</Sponsor> <StartDate>2023-09-30T04:13:45.4415829+02:00</StartDate> <Status>sample string 5</Status> <VenueId>1</VenueId> <WithPairs>true</WithPairs> </SeasonDetailsCoreModel>