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

NameDescriptionTypeAdditional information
pageNumber

integer

None.

pageSize

integer

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PersonalBest
NameDescriptionTypeAdditional information
age_group

string

None.

bow_class

string

None.

change_in_rank

string

None.

date_shot

date

None.

golds

integer

None.

hits

integer

None.

name

string

None.

rank

integer

None.

rank_change

string

None.

round

string

None.

score

integer

None.

status

string

None.

type

string

None.

tens_xs

integer

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": "2024-12-24T13:41:18.0131623+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",
    "type": "sample string 13",
    "tens_xs": 14
  },
  {
    "age_group": "sample string 1",
    "bow_class": "sample string 2",
    "change_in_rank": "sample string 3",
    "date_shot": "2024-12-24T13:41:18.0131623+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",
    "type": "sample string 13",
    "tens_xs": 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>2024-12-24T13:41:18.0131623+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>14</tens_xs>
    <type>sample string 13</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>2024-12-24T13:41:18.0131623+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>14</tens_xs>
    <type>sample string 13</type>
  </PersonalBest>
</ArrayOfPersonalBest>