GET api/currentclassifications?id={id}&pageNumber={pageNumber}&pageSize={pageSize}
Lists current classifications filtered by the provided id in GUID format. For example class_id will list all current classifications 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 Classification| Name | Description | Type | Additional information |
|---|---|---|---|
| achieved | date |
None. |
|
| archer_archived | boolean |
None. |
|
| archer_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. |
|
| classification | string |
None. |
|
| classification_id | globally unique identifier |
None. |
|
| name | string |
None. |
|
| season_id | globally unique identifier |
None. |
|
| type | string |
None. |
|
| type_id | globally unique identifier |
None. |
|
| updated | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"achieved": "2025-11-16T01:28:19.9872012+00:00",
"archer_archived": true,
"archer_id": "6b6ec9c2-92a7-4a82-9b86-85015f3548c1",
"bow_class": "sample string 4",
"category": "sample string 5",
"category_archived": true,
"category_id": "660b7310-ed32-442a-aeef-fd853c79f549",
"class_archived": true,
"class_id": "c9fbdd5a-01ba-47ec-ae87-a47a747d7004",
"classification": "sample string 10",
"classification_id": "4dfe3412-fa6a-40d7-ac71-b6ca777527cd",
"name": "sample string 12",
"season_id": "ce2ef610-fdf4-4880-8a42-a3c6fc3a8453",
"type": "sample string 14",
"type_id": "4c1542bc-a36b-465d-b47a-760d5295b4c7",
"updated": "2025-11-16T01:28:19.9872012+00:00"
},
{
"achieved": "2025-11-16T01:28:19.9872012+00:00",
"archer_archived": true,
"archer_id": "6b6ec9c2-92a7-4a82-9b86-85015f3548c1",
"bow_class": "sample string 4",
"category": "sample string 5",
"category_archived": true,
"category_id": "660b7310-ed32-442a-aeef-fd853c79f549",
"class_archived": true,
"class_id": "c9fbdd5a-01ba-47ec-ae87-a47a747d7004",
"classification": "sample string 10",
"classification_id": "4dfe3412-fa6a-40d7-ac71-b6ca777527cd",
"name": "sample string 12",
"season_id": "ce2ef610-fdf4-4880-8a42-a3c6fc3a8453",
"type": "sample string 14",
"type_id": "4c1542bc-a36b-465d-b47a-760d5295b4c7",
"updated": "2025-11-16T01:28:19.9872012+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfClassification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API">
<Classification>
<achieved>2025-11-16T01:28:19.9872012+00:00</achieved>
<archer_archived>true</archer_archived>
<archer_id>6b6ec9c2-92a7-4a82-9b86-85015f3548c1</archer_id>
<bow_class>sample string 4</bow_class>
<category>sample string 5</category>
<category_archived>true</category_archived>
<category_id>660b7310-ed32-442a-aeef-fd853c79f549</category_id>
<class_archived>true</class_archived>
<class_id>c9fbdd5a-01ba-47ec-ae87-a47a747d7004</class_id>
<classification>sample string 10</classification>
<classification_id>4dfe3412-fa6a-40d7-ac71-b6ca777527cd</classification_id>
<name>sample string 12</name>
<season_id>ce2ef610-fdf4-4880-8a42-a3c6fc3a8453</season_id>
<type>sample string 14</type>
<type_id>4c1542bc-a36b-465d-b47a-760d5295b4c7</type_id>
<updated>2025-11-16T01:28:19.9872012+00:00</updated>
</Classification>
<Classification>
<achieved>2025-11-16T01:28:19.9872012+00:00</achieved>
<archer_archived>true</archer_archived>
<archer_id>6b6ec9c2-92a7-4a82-9b86-85015f3548c1</archer_id>
<bow_class>sample string 4</bow_class>
<category>sample string 5</category>
<category_archived>true</category_archived>
<category_id>660b7310-ed32-442a-aeef-fd853c79f549</category_id>
<class_archived>true</class_archived>
<class_id>c9fbdd5a-01ba-47ec-ae87-a47a747d7004</class_id>
<classification>sample string 10</classification>
<classification_id>4dfe3412-fa6a-40d7-ac71-b6ca777527cd</classification_id>
<name>sample string 12</name>
<season_id>ce2ef610-fdf4-4880-8a42-a3c6fc3a8453</season_id>
<type>sample string 14</type>
<type_id>4c1542bc-a36b-465d-b47a-760d5295b4c7</type_id>
<updated>2025-11-16T01:28:19.9872012+00:00</updated>
</Classification>
</ArrayOfClassification>