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

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional information
achieved

Gets the date achieved.

date

None.

age_group

Gets the age group.

string

None.

age_group_archived

Gets if the age group is archived.

boolean

None.

age_group_id

Gets the identifier of the age group.

globally unique identifier

None.

bow_class

Gets the bow class.

string

None.

class_archived

Gets if the bow class is archived.

boolean

None.

class_id

Gets the identifier of the bow class.

globally unique identifier

None.

classification

Gets the classification.

string

None.

classification_id

Gets the identifier of the classification.

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

Get the name of the holder.

string

None.

season

Gets the season in which it was achieved.

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": "2025-08-02T09:53:12.4638761+01:00",
    "age_group": "sample string 2",
    "age_group_archived": true,
    "age_group_id": "abe405c8-dd0d-4fd7-903f-5454a21e096b",
    "bow_class": "sample string 5",
    "class_archived": true,
    "class_id": "42cbf85c-fa8b-4af1-8cfe-0735d63c522f",
    "classification": "sample string 8",
    "classification_id": "5267d694-c687-4e5e-9559-aa420e30bd84",
    "member_archived": true,
    "member_id": "c7831545-76a4-43d4-b8cf-ec619f098e72",
    "name": "sample string 12",
    "season": "sample string 13",
    "season_id": "b6f4d160-cc6b-4242-bfe4-4fb1ed67830a",
    "type": "sample string 15",
    "type_id": "9f4b025c-a83a-470f-9ee0-285e0667df96",
    "updated": "2025-08-02T09:53:12.4638761+01:00"
  },
  {
    "achieved": "2025-08-02T09:53:12.4638761+01:00",
    "age_group": "sample string 2",
    "age_group_archived": true,
    "age_group_id": "abe405c8-dd0d-4fd7-903f-5454a21e096b",
    "bow_class": "sample string 5",
    "class_archived": true,
    "class_id": "42cbf85c-fa8b-4af1-8cfe-0735d63c522f",
    "classification": "sample string 8",
    "classification_id": "5267d694-c687-4e5e-9559-aa420e30bd84",
    "member_archived": true,
    "member_id": "c7831545-76a4-43d4-b8cf-ec619f098e72",
    "name": "sample string 12",
    "season": "sample string 13",
    "season_id": "b6f4d160-cc6b-4242-bfe4-4fb1ed67830a",
    "type": "sample string 15",
    "type_id": "9f4b025c-a83a-470f-9ee0-285e0667df96",
    "updated": "2025-08-02T09:53:12.4638761+01:00"
  }
]

multipart/form-data

Sample:
[{"achieved":"2025-08-02T09:53:12.4638761+01:00","age_group":"sample string 2","age_group_archived":true,"age_group_id":"abe405c8-dd0d-4fd7-903f-5454a21e096b","bow_class":"sample string 5","class_archived":true,"class_id":"42cbf85c-fa8b-4af1-8cfe-0735d63c522f","classification":"sample string 8","classification_id":"5267d694-c687-4e5e-9559-aa420e30bd84","member_archived":true,"member_id":"c7831545-76a4-43d4-b8cf-ec619f098e72","name":"sample string 12","season":"sample string 13","season_id":"b6f4d160-cc6b-4242-bfe4-4fb1ed67830a","type":"sample string 15","type_id":"9f4b025c-a83a-470f-9ee0-285e0667df96","updated":"2025-08-02T09:53:12.4638761+01:00"},{"achieved":"2025-08-02T09:53:12.4638761+01:00","age_group":"sample string 2","age_group_archived":true,"age_group_id":"abe405c8-dd0d-4fd7-903f-5454a21e096b","bow_class":"sample string 5","class_archived":true,"class_id":"42cbf85c-fa8b-4af1-8cfe-0735d63c522f","classification":"sample string 8","classification_id":"5267d694-c687-4e5e-9559-aa420e30bd84","member_archived":true,"member_id":"c7831545-76a4-43d4-b8cf-ec619f098e72","name":"sample string 12","season":"sample string 13","season_id":"b6f4d160-cc6b-4242-bfe4-4fb1ed67830a","type":"sample string 15","type_id":"9f4b025c-a83a-470f-9ee0-285e0667df96","updated":"2025-08-02T09:53:12.4638761+01: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-08-02T09:53:12.4638761+01:00</achieved>
    <age_group>sample string 2</age_group>
    <age_group_archived>true</age_group_archived>
    <age_group_id>abe405c8-dd0d-4fd7-903f-5454a21e096b</age_group_id>
    <bow_class>sample string 5</bow_class>
    <class_archived>true</class_archived>
    <class_id>42cbf85c-fa8b-4af1-8cfe-0735d63c522f</class_id>
    <classification>sample string 8</classification>
    <classification_id>5267d694-c687-4e5e-9559-aa420e30bd84</classification_id>
    <member_archived>true</member_archived>
    <member_id>c7831545-76a4-43d4-b8cf-ec619f098e72</member_id>
    <name>sample string 12</name>
    <season>sample string 13</season>
    <season_id>b6f4d160-cc6b-4242-bfe4-4fb1ed67830a</season_id>
    <type>sample string 15</type>
    <type_id>9f4b025c-a83a-470f-9ee0-285e0667df96</type_id>
    <updated>2025-08-02T09:53:12.4638761+01:00</updated>
  </Classification>
  <Classification>
    <achieved>2025-08-02T09:53:12.4638761+01:00</achieved>
    <age_group>sample string 2</age_group>
    <age_group_archived>true</age_group_archived>
    <age_group_id>abe405c8-dd0d-4fd7-903f-5454a21e096b</age_group_id>
    <bow_class>sample string 5</bow_class>
    <class_archived>true</class_archived>
    <class_id>42cbf85c-fa8b-4af1-8cfe-0735d63c522f</class_id>
    <classification>sample string 8</classification>
    <classification_id>5267d694-c687-4e5e-9559-aa420e30bd84</classification_id>
    <member_archived>true</member_archived>
    <member_id>c7831545-76a4-43d4-b8cf-ec619f098e72</member_id>
    <name>sample string 12</name>
    <season>sample string 13</season>
    <season_id>b6f4d160-cc6b-4242-bfe4-4fb1ed67830a</season_id>
    <type>sample string 15</type>
    <type_id>9f4b025c-a83a-470f-9ee0-285e0667df96</type_id>
    <updated>2025-08-02T09:53:12.4638761+01:00</updated>
  </Classification>
</ArrayOfClassification>