GET api/personalbests?pageNumber={pageNumber}&pageSize={pageSize}
Lists ranked member personal bests. 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 PersonalBest| Name | Description | Type | Additional information |
|---|---|---|---|
| age_group |
Gets the age group. |
string |
None. |
| bow_class |
Gets the bow class. |
string |
None. |
| change_in_rank |
Gets the change in rank. |
string |
None. |
| date_shot |
Gets the date shot. |
date |
None. |
| golds |
Gets the number of golds. |
integer |
None. |
| hits |
Gets the number of hits. |
integer |
None. |
| name |
Gets the name of the archer. |
string |
None. |
| rank |
Gets the rank. |
integer |
None. |
| rank_change |
Gets the rank change. |
string |
None. |
| round |
Gets the round. |
string |
None. |
| score |
Gets the score. |
integer |
None. |
| status |
Gets the status. |
string |
None. |
| tens_xs |
Gets the number of tens or Xs. |
integer |
None. |
| type |
Gets the type. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"age_group": "sample string 1",
"bow_class": "sample string 2",
"change_in_rank": "sample string 3",
"date_shot": "2025-12-20T22:45:50.9063463+00:00",
"golds": 5,
"hits": 6,
"name": "sample string 7",
"rank": 8,
"rank_change": "sample string 9",
"round": "sample string 10",
"score": 11,
"status": "sample string 12",
"tens_xs": 13,
"type": "sample string 14"
},
{
"age_group": "sample string 1",
"bow_class": "sample string 2",
"change_in_rank": "sample string 3",
"date_shot": "2025-12-20T22:45:50.9063463+00:00",
"golds": 5,
"hits": 6,
"name": "sample string 7",
"rank": 8,
"rank_change": "sample string 9",
"round": "sample string 10",
"score": 11,
"status": "sample string 12",
"tens_xs": 13,
"type": "sample string 14"
}
]
multipart/form-data
Sample:
[{"age_group":"sample string 1","bow_class":"sample string 2","change_in_rank":"sample string 3","date_shot":"2025-12-20T22:45:50.9063463+00:00","golds":5,"hits":6,"name":"sample string 7","rank":8,"rank_change":"sample string 9","round":"sample string 10","score":11,"status":"sample string 12","tens_xs":13,"type":"sample string 14"},{"age_group":"sample string 1","bow_class":"sample string 2","change_in_rank":"sample string 3","date_shot":"2025-12-20T22:45:50.9063463+00:00","golds":5,"hits":6,"name":"sample string 7","rank":8,"rank_change":"sample string 9","round":"sample string 10","score":11,"status":"sample string 12","tens_xs":13,"type":"sample string 14"}]
application/xml, text/xml
Sample:
<ArrayOfPersonalBest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API.Models">
<PersonalBest>
<age_group>sample string 1</age_group>
<bow_class>sample string 2</bow_class>
<change_in_rank>sample string 3</change_in_rank>
<date_shot>2025-12-20T22:45:50.9063463+00:00</date_shot>
<golds>5</golds>
<hits>6</hits>
<name>sample string 7</name>
<rank>8</rank>
<rank_change>sample string 9</rank_change>
<round>sample string 10</round>
<score>11</score>
<status>sample string 12</status>
<tens_xs>13</tens_xs>
<type>sample string 14</type>
</PersonalBest>
<PersonalBest>
<age_group>sample string 1</age_group>
<bow_class>sample string 2</bow_class>
<change_in_rank>sample string 3</change_in_rank>
<date_shot>2025-12-20T22:45:50.9063463+00:00</date_shot>
<golds>5</golds>
<hits>6</hits>
<name>sample string 7</name>
<rank>8</rank>
<rank_change>sample string 9</rank_change>
<round>sample string 10</round>
<score>11</score>
<status>sample string 12</status>
<tens_xs>13</tens_xs>
<type>sample string 14</type>
</PersonalBest>
</ArrayOfPersonalBest>