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 AwardName | 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": "2024-12-24T13:28:16.0968784+00:00", "archer_archived": true, "archer_id": "ca3c115d-3ef5-491a-996e-3a77a0d417c7", "award": "sample string 4", "award_id": "410f301d-2bd5-491e-b128-e2faf126254a", "bow_class": "sample string 6", "category": "sample string 7", "category_archived": true, "category_id": "13aeeb7d-ea05-40b5-a4f1-b35d4db48244", "class_archived": true, "class_id": "5e00ead0-c2f2-432d-a855-5892a7a1371e", "name": "sample string 12", "round": "sample string 13", "round_archived": true, "round_id": "78c5f093-ed6a-416a-88ef-5084a01f7727", "season_id": "4f94d28c-2898-4e87-9dfb-0b638ea9d734" }, { "achieved": "2024-12-24T13:28:16.0968784+00:00", "archer_archived": true, "archer_id": "ca3c115d-3ef5-491a-996e-3a77a0d417c7", "award": "sample string 4", "award_id": "410f301d-2bd5-491e-b128-e2faf126254a", "bow_class": "sample string 6", "category": "sample string 7", "category_archived": true, "category_id": "13aeeb7d-ea05-40b5-a4f1-b35d4db48244", "class_archived": true, "class_id": "5e00ead0-c2f2-432d-a855-5892a7a1371e", "name": "sample string 12", "round": "sample string 13", "round_archived": true, "round_id": "78c5f093-ed6a-416a-88ef-5084a01f7727", "season_id": "4f94d28c-2898-4e87-9dfb-0b638ea9d734" } ]
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>2024-12-24T13:28:16.0968784+00:00</achieved> <archer_archived>true</archer_archived> <archer_id>ca3c115d-3ef5-491a-996e-3a77a0d417c7</archer_id> <award>sample string 4</award> <award_id>410f301d-2bd5-491e-b128-e2faf126254a</award_id> <bow_class>sample string 6</bow_class> <category>sample string 7</category> <category_archived>true</category_archived> <category_id>13aeeb7d-ea05-40b5-a4f1-b35d4db48244</category_id> <class_archived>true</class_archived> <class_id>5e00ead0-c2f2-432d-a855-5892a7a1371e</class_id> <name>sample string 12</name> <round>sample string 13</round> <round_archived>true</round_archived> <round_id>78c5f093-ed6a-416a-88ef-5084a01f7727</round_id> <season_id>4f94d28c-2898-4e87-9dfb-0b638ea9d734</season_id> </Award> <Award> <achieved>2024-12-24T13:28:16.0968784+00:00</achieved> <archer_archived>true</archer_archived> <archer_id>ca3c115d-3ef5-491a-996e-3a77a0d417c7</archer_id> <award>sample string 4</award> <award_id>410f301d-2bd5-491e-b128-e2faf126254a</award_id> <bow_class>sample string 6</bow_class> <category>sample string 7</category> <category_archived>true</category_archived> <category_id>13aeeb7d-ea05-40b5-a4f1-b35d4db48244</category_id> <class_archived>true</class_archived> <class_id>5e00ead0-c2f2-432d-a855-5892a7a1371e</class_id> <name>sample string 12</name> <round>sample string 13</round> <round_archived>true</round_archived> <round_id>78c5f093-ed6a-416a-88ef-5084a01f7727</round_id> <season_id>4f94d28c-2898-4e87-9dfb-0b638ea9d734</season_id> </Award> </ArrayOfAward>