GET api/archers?id={id}&pageNumber={pageNumber}&pageSize={pageSize}
Lists archer data by the provided id in GUID format. For example class_id will list all archer records with that class id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
A GUID (Globally Unique Identifier) in the format xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx |
globally unique identifier |
Required |
| pageNumber | integer |
None. |
|
| pageSize | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of Archer| Name | Description | Type | Additional information |
|---|---|---|---|
| address | string |
None. |
|
| archer_archived | boolean |
None. |
|
| archer_id | globally unique identifier |
None. |
|
| bow_class | string |
None. |
|
| category | string |
None. |
|
| category_id | globally unique identifier |
None. |
|
| class_id | globally unique identifier |
None. |
|
| coachinglevel | string |
None. |
|
| consent | boolean |
None. |
|
| date_of_birth | date |
None. |
|
| string |
None. |
||
| emergencycontact | string |
None. |
|
| emergencyphone | string |
None. |
|
| joined | date |
None. |
|
| junior | boolean |
None. |
|
| membership_id | string |
None. |
|
| name | string |
None. |
|
| notes | string |
None. |
|
| phone | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"address": "sample string 1",
"archer_archived": true,
"archer_id": "a4cd44eb-eb47-4846-a298-5d6b86bf2bb5",
"bow_class": "sample string 4",
"category": "sample string 5",
"category_id": "8d0e9fc3-591a-45ad-8e5b-3a60f30375c5",
"class_id": "6c84102e-ca9a-4452-9fd6-ec71c6844054",
"coachinglevel": "sample string 8",
"consent": true,
"date_of_birth": "2025-11-02T11:35:40.9326214+00:00",
"email": "sample string 11",
"emergencycontact": "sample string 12",
"emergencyphone": "sample string 13",
"joined": "2025-11-02T11:35:40.9326214+00:00",
"junior": true,
"membership_id": "sample string 16",
"name": "sample string 17",
"notes": "sample string 18",
"phone": "sample string 19"
},
{
"address": "sample string 1",
"archer_archived": true,
"archer_id": "a4cd44eb-eb47-4846-a298-5d6b86bf2bb5",
"bow_class": "sample string 4",
"category": "sample string 5",
"category_id": "8d0e9fc3-591a-45ad-8e5b-3a60f30375c5",
"class_id": "6c84102e-ca9a-4452-9fd6-ec71c6844054",
"coachinglevel": "sample string 8",
"consent": true,
"date_of_birth": "2025-11-02T11:35:40.9326214+00:00",
"email": "sample string 11",
"emergencycontact": "sample string 12",
"emergencyphone": "sample string 13",
"joined": "2025-11-02T11:35:40.9326214+00:00",
"junior": true,
"membership_id": "sample string 16",
"name": "sample string 17",
"notes": "sample string 18",
"phone": "sample string 19"
}
]
application/xml, text/xml
Sample:
<ArrayOfArcher xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API.Models">
<Archer>
<address>sample string 1</address>
<archer_archived>true</archer_archived>
<archer_id>a4cd44eb-eb47-4846-a298-5d6b86bf2bb5</archer_id>
<bow_class>sample string 4</bow_class>
<category>sample string 5</category>
<category_id>8d0e9fc3-591a-45ad-8e5b-3a60f30375c5</category_id>
<class_id>6c84102e-ca9a-4452-9fd6-ec71c6844054</class_id>
<coachinglevel>sample string 8</coachinglevel>
<consent>true</consent>
<date_of_birth>2025-11-02T11:35:40.9326214+00:00</date_of_birth>
<email>sample string 11</email>
<emergencycontact>sample string 12</emergencycontact>
<emergencyphone>sample string 13</emergencyphone>
<joined>2025-11-02T11:35:40.9326214+00:00</joined>
<junior>true</junior>
<membership_id>sample string 16</membership_id>
<name>sample string 17</name>
<notes>sample string 18</notes>
<phone>sample string 19</phone>
</Archer>
<Archer>
<address>sample string 1</address>
<archer_archived>true</archer_archived>
<archer_id>a4cd44eb-eb47-4846-a298-5d6b86bf2bb5</archer_id>
<bow_class>sample string 4</bow_class>
<category>sample string 5</category>
<category_id>8d0e9fc3-591a-45ad-8e5b-3a60f30375c5</category_id>
<class_id>6c84102e-ca9a-4452-9fd6-ec71c6844054</class_id>
<coachinglevel>sample string 8</coachinglevel>
<consent>true</consent>
<date_of_birth>2025-11-02T11:35:40.9326214+00:00</date_of_birth>
<email>sample string 11</email>
<emergencycontact>sample string 12</emergencycontact>
<emergencyphone>sample string 13</emergencyphone>
<joined>2025-11-02T11:35:40.9326214+00:00</joined>
<junior>true</junior>
<membership_id>sample string 16</membership_id>
<name>sample string 17</name>
<notes>sample string 18</notes>
<phone>sample string 19</phone>
</Archer>
</ArrayOfArcher>