GET api/awards?pageNumber={pageNumber}&pageSize={pageSize}
Lists all awards. Maximum 1000 records per page. Specify desired page {pageNumber}and number of records per page {pageSize}. Number of pages is returned in headers.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber | integer |
None. |
|
| pageSize | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of Award| Name | Description | Type | Additional information |
|---|---|---|---|
| achieved | date |
None. |
|
| archer_archived | boolean |
None. |
|
| archer_id | globally unique identifier |
None. |
|
| award | string |
None. |
|
| award_id | globally unique identifier |
None. |
|
| bow_class | string |
None. |
|
| category | string |
None. |
|
| category_archived | boolean |
None. |
|
| category_id | globally unique identifier |
None. |
|
| class_archived | boolean |
None. |
|
| class_id | globally unique identifier |
None. |
|
| name | string |
None. |
|
| round | string |
None. |
|
| round_archived | boolean |
None. |
|
| round_id | globally unique identifier |
None. |
|
| season_id | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"achieved": "2026-01-11T18:04:40.2536442+00:00",
"archer_archived": true,
"archer_id": "64a1b82a-0571-4e58-87c4-3e07c4561d0f",
"award": "sample string 4",
"award_id": "57305e84-486a-4773-90d2-da3e00dbb7ae",
"bow_class": "sample string 6",
"category": "sample string 7",
"category_archived": true,
"category_id": "7a9d8d8e-4a4b-416b-86c9-7a3c29c2a495",
"class_archived": true,
"class_id": "d60b6d0b-de11-440b-b720-a12577be78f5",
"name": "sample string 12",
"round": "sample string 13",
"round_archived": true,
"round_id": "ff20c139-affa-4118-8346-a1636e597aa1",
"season_id": "e5bfded1-f33c-46b0-9a1a-3cdcb1bbf6b0"
},
{
"achieved": "2026-01-11T18:04:40.2536442+00:00",
"archer_archived": true,
"archer_id": "64a1b82a-0571-4e58-87c4-3e07c4561d0f",
"award": "sample string 4",
"award_id": "57305e84-486a-4773-90d2-da3e00dbb7ae",
"bow_class": "sample string 6",
"category": "sample string 7",
"category_archived": true,
"category_id": "7a9d8d8e-4a4b-416b-86c9-7a3c29c2a495",
"class_archived": true,
"class_id": "d60b6d0b-de11-440b-b720-a12577be78f5",
"name": "sample string 12",
"round": "sample string 13",
"round_archived": true,
"round_id": "ff20c139-affa-4118-8346-a1636e597aa1",
"season_id": "e5bfded1-f33c-46b0-9a1a-3cdcb1bbf6b0"
}
]
application/xml, text/xml
Sample:
<ArrayOfAward xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API">
<Award>
<achieved>2026-01-11T18:04:40.2536442+00:00</achieved>
<archer_archived>true</archer_archived>
<archer_id>64a1b82a-0571-4e58-87c4-3e07c4561d0f</archer_id>
<award>sample string 4</award>
<award_id>57305e84-486a-4773-90d2-da3e00dbb7ae</award_id>
<bow_class>sample string 6</bow_class>
<category>sample string 7</category>
<category_archived>true</category_archived>
<category_id>7a9d8d8e-4a4b-416b-86c9-7a3c29c2a495</category_id>
<class_archived>true</class_archived>
<class_id>d60b6d0b-de11-440b-b720-a12577be78f5</class_id>
<name>sample string 12</name>
<round>sample string 13</round>
<round_archived>true</round_archived>
<round_id>ff20c139-affa-4118-8346-a1636e597aa1</round_id>
<season_id>e5bfded1-f33c-46b0-9a1a-3cdcb1bbf6b0</season_id>
</Award>
<Award>
<achieved>2026-01-11T18:04:40.2536442+00:00</achieved>
<archer_archived>true</archer_archived>
<archer_id>64a1b82a-0571-4e58-87c4-3e07c4561d0f</archer_id>
<award>sample string 4</award>
<award_id>57305e84-486a-4773-90d2-da3e00dbb7ae</award_id>
<bow_class>sample string 6</bow_class>
<category>sample string 7</category>
<category_archived>true</category_archived>
<category_id>7a9d8d8e-4a4b-416b-86c9-7a3c29c2a495</category_id>
<class_archived>true</class_archived>
<class_id>d60b6d0b-de11-440b-b720-a12577be78f5</class_id>
<name>sample string 12</name>
<round>sample string 13</round>
<round_archived>true</round_archived>
<round_id>ff20c139-affa-4118-8346-a1636e597aa1</round_id>
<season_id>e5bfded1-f33c-46b0-9a1a-3cdcb1bbf6b0</season_id>
</Award>
</ArrayOfAward>