GET api/seasons?pageNumber={pageNumber}&pageSize={pageSize}
Lists all seasons.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber | integer |
None. |
|
| pageSize | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of Season| Name | Description | Type | Additional information |
|---|---|---|---|
| end_date | date |
None. |
|
| season | string |
None. |
|
| season_archived | boolean |
None. |
|
| season_id | globally unique identifier |
None. |
|
| start_date | date |
None. |
|
| type | string |
None. |
|
| type_id | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"end_date": "2025-11-21T16:56:13.4162835+00:00",
"season": "sample string 2",
"season_archived": true,
"season_id": "6fe12e69-4e2e-4bbe-b87e-7d0a383b8237",
"start_date": "2025-11-21T16:56:13.4162835+00:00",
"type": "sample string 6",
"type_id": "66951f30-f5c7-4c6e-a2b5-37c2bf65d9ca"
},
{
"end_date": "2025-11-21T16:56:13.4162835+00:00",
"season": "sample string 2",
"season_archived": true,
"season_id": "6fe12e69-4e2e-4bbe-b87e-7d0a383b8237",
"start_date": "2025-11-21T16:56:13.4162835+00:00",
"type": "sample string 6",
"type_id": "66951f30-f5c7-4c6e-a2b5-37c2bf65d9ca"
}
]
application/xml, text/xml
Sample:
<ArrayOfSeason xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API">
<Season>
<end_date>2025-11-21T16:56:13.4162835+00:00</end_date>
<season>sample string 2</season>
<season_archived>true</season_archived>
<season_id>6fe12e69-4e2e-4bbe-b87e-7d0a383b8237</season_id>
<start_date>2025-11-21T16:56:13.4162835+00:00</start_date>
<type>sample string 6</type>
<type_id>66951f30-f5c7-4c6e-a2b5-37c2bf65d9ca</type_id>
</Season>
<Season>
<end_date>2025-11-21T16:56:13.4162835+00:00</end_date>
<season>sample string 2</season>
<season_archived>true</season_archived>
<season_id>6fe12e69-4e2e-4bbe-b87e-7d0a383b8237</season_id>
<start_date>2025-11-21T16:56:13.4162835+00:00</start_date>
<type>sample string 6</type>
<type_id>66951f30-f5c7-4c6e-a2b5-37c2bf65d9ca</type_id>
</Season>
</ArrayOfSeason>