GET api/handicaps?pageNumber={pageNumber}&pageSize={pageSize}
Lists all handicaps. 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 Handicap| Name | Description | Type | Additional information |
|---|---|---|---|
| achieved |
Gets the date achieved. |
date |
None. |
| bow_class |
Gets the bow class. |
string |
None. |
| class_archived |
Gets if the class is archived. |
boolean |
None. |
| class_id |
Gets the identifier of the bow class. |
globally unique identifier |
None. |
| handicap |
Gets the handicap. |
integer |
None. |
| handicap_id |
Gets the identifier of the handicap. |
globally unique identifier |
None. |
| member_archived |
Gets if the member is archived. |
boolean |
None. |
| member_id |
Gets the identifier of the member. |
globally unique identifier |
None. |
| name |
Gets the name of the archer. |
string |
None. |
| season_id |
Gets the identifier of the season. |
globally unique identifier |
None. |
| type |
Gets the archery type (eg Outdoor). |
string |
None. |
| type_id |
Gets the identifier of the type. |
globally unique identifier |
None. |
| updated |
Gets the date updated. |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"achieved": "2026-03-21T21:39:03.0487513+00:00",
"bow_class": "sample string 2",
"class_archived": true,
"class_id": "0dc201a7-ed3a-4b00-9432-6aca82d764ae",
"handicap": 5,
"handicap_id": "bea39dcb-63ca-491f-b7f6-81c56b8737f0",
"member_archived": true,
"member_id": "5cce66f0-60e8-4f6d-ae9a-3b13665bf488",
"name": "sample string 9",
"season_id": "d6d59f17-d8a5-4d95-8f7f-92e1504e2d2d",
"type": "sample string 11",
"type_id": "c885d64e-2a31-4c96-936a-fd4b4276c5d9",
"updated": "2026-03-21T21:39:03.0487513+00:00"
},
{
"achieved": "2026-03-21T21:39:03.0487513+00:00",
"bow_class": "sample string 2",
"class_archived": true,
"class_id": "0dc201a7-ed3a-4b00-9432-6aca82d764ae",
"handicap": 5,
"handicap_id": "bea39dcb-63ca-491f-b7f6-81c56b8737f0",
"member_archived": true,
"member_id": "5cce66f0-60e8-4f6d-ae9a-3b13665bf488",
"name": "sample string 9",
"season_id": "d6d59f17-d8a5-4d95-8f7f-92e1504e2d2d",
"type": "sample string 11",
"type_id": "c885d64e-2a31-4c96-936a-fd4b4276c5d9",
"updated": "2026-03-21T21:39:03.0487513+00:00"
}
]
multipart/form-data
Sample:
[{"achieved":"2026-03-21T21:39:03.0487513+00:00","bow_class":"sample string 2","class_archived":true,"class_id":"0dc201a7-ed3a-4b00-9432-6aca82d764ae","handicap":5,"handicap_id":"bea39dcb-63ca-491f-b7f6-81c56b8737f0","member_archived":true,"member_id":"5cce66f0-60e8-4f6d-ae9a-3b13665bf488","name":"sample string 9","season_id":"d6d59f17-d8a5-4d95-8f7f-92e1504e2d2d","type":"sample string 11","type_id":"c885d64e-2a31-4c96-936a-fd4b4276c5d9","updated":"2026-03-21T21:39:03.0487513+00:00"},{"achieved":"2026-03-21T21:39:03.0487513+00:00","bow_class":"sample string 2","class_archived":true,"class_id":"0dc201a7-ed3a-4b00-9432-6aca82d764ae","handicap":5,"handicap_id":"bea39dcb-63ca-491f-b7f6-81c56b8737f0","member_archived":true,"member_id":"5cce66f0-60e8-4f6d-ae9a-3b13665bf488","name":"sample string 9","season_id":"d6d59f17-d8a5-4d95-8f7f-92e1504e2d2d","type":"sample string 11","type_id":"c885d64e-2a31-4c96-936a-fd4b4276c5d9","updated":"2026-03-21T21:39:03.0487513+00:00"}]
application/xml, text/xml
Sample:
<ArrayOfHandicap xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API">
<Handicap>
<achieved>2026-03-21T21:39:03.0487513+00:00</achieved>
<bow_class>sample string 2</bow_class>
<class_archived>true</class_archived>
<class_id>0dc201a7-ed3a-4b00-9432-6aca82d764ae</class_id>
<handicap>5</handicap>
<handicap_id>bea39dcb-63ca-491f-b7f6-81c56b8737f0</handicap_id>
<member_archived>true</member_archived>
<member_id>5cce66f0-60e8-4f6d-ae9a-3b13665bf488</member_id>
<name>sample string 9</name>
<season_id>d6d59f17-d8a5-4d95-8f7f-92e1504e2d2d</season_id>
<type>sample string 11</type>
<type_id>c885d64e-2a31-4c96-936a-fd4b4276c5d9</type_id>
<updated>2026-03-21T21:39:03.0487513+00:00</updated>
</Handicap>
<Handicap>
<achieved>2026-03-21T21:39:03.0487513+00:00</achieved>
<bow_class>sample string 2</bow_class>
<class_archived>true</class_archived>
<class_id>0dc201a7-ed3a-4b00-9432-6aca82d764ae</class_id>
<handicap>5</handicap>
<handicap_id>bea39dcb-63ca-491f-b7f6-81c56b8737f0</handicap_id>
<member_archived>true</member_archived>
<member_id>5cce66f0-60e8-4f6d-ae9a-3b13665bf488</member_id>
<name>sample string 9</name>
<season_id>d6d59f17-d8a5-4d95-8f7f-92e1504e2d2d</season_id>
<type>sample string 11</type>
<type_id>c885d64e-2a31-4c96-936a-fd4b4276c5d9</type_id>
<updated>2026-03-21T21:39:03.0487513+00:00</updated>
</Handicap>
</ArrayOfHandicap>