GET api/classifications?id={id}&pageNumber={pageNumber}&pageSize={pageSize}

Lists all classifications filtered by the provided id in GUID format. For example class_id will list all 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

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-10-13T22:15:52.9512047+01:00",
    "archer_archived": true,
    "archer_id": "064bf7a5-8107-48ca-a246-c9e996b960b1",
    "bow_class": "sample string 4",
    "category": "sample string 5",
    "category_archived": true,
    "category_id": "6a5971b5-b152-474f-be8f-d472452f28db",
    "class_archived": true,
    "class_id": "7309b15c-4e3a-4e9b-b780-78167454dfd4",
    "classification": "sample string 10",
    "classification_id": "417591c4-4f33-4c1b-beba-cca453c0e00a",
    "name": "sample string 12",
    "season_id": "16b16d78-7f45-44dc-9d50-a0b9a5eefb42",
    "type": "sample string 14",
    "type_id": "66758bda-8c48-49c3-b06e-fba04c7ab4e5",
    "updated": "2025-10-13T22:15:52.9512047+01:00"
  },
  {
    "achieved": "2025-10-13T22:15:52.9512047+01:00",
    "archer_archived": true,
    "archer_id": "064bf7a5-8107-48ca-a246-c9e996b960b1",
    "bow_class": "sample string 4",
    "category": "sample string 5",
    "category_archived": true,
    "category_id": "6a5971b5-b152-474f-be8f-d472452f28db",
    "class_archived": true,
    "class_id": "7309b15c-4e3a-4e9b-b780-78167454dfd4",
    "classification": "sample string 10",
    "classification_id": "417591c4-4f33-4c1b-beba-cca453c0e00a",
    "name": "sample string 12",
    "season_id": "16b16d78-7f45-44dc-9d50-a0b9a5eefb42",
    "type": "sample string 14",
    "type_id": "66758bda-8c48-49c3-b06e-fba04c7ab4e5",
    "updated": "2025-10-13T22:15:52.9512047+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-10-13T22:15:52.9512047+01:00</achieved>
    <archer_archived>true</archer_archived>
    <archer_id>064bf7a5-8107-48ca-a246-c9e996b960b1</archer_id>
    <bow_class>sample string 4</bow_class>
    <category>sample string 5</category>
    <category_archived>true</category_archived>
    <category_id>6a5971b5-b152-474f-be8f-d472452f28db</category_id>
    <class_archived>true</class_archived>
    <class_id>7309b15c-4e3a-4e9b-b780-78167454dfd4</class_id>
    <classification>sample string 10</classification>
    <classification_id>417591c4-4f33-4c1b-beba-cca453c0e00a</classification_id>
    <name>sample string 12</name>
    <season_id>16b16d78-7f45-44dc-9d50-a0b9a5eefb42</season_id>
    <type>sample string 14</type>
    <type_id>66758bda-8c48-49c3-b06e-fba04c7ab4e5</type_id>
    <updated>2025-10-13T22:15:52.9512047+01:00</updated>
  </Classification>
  <Classification>
    <achieved>2025-10-13T22:15:52.9512047+01:00</achieved>
    <archer_archived>true</archer_archived>
    <archer_id>064bf7a5-8107-48ca-a246-c9e996b960b1</archer_id>
    <bow_class>sample string 4</bow_class>
    <category>sample string 5</category>
    <category_archived>true</category_archived>
    <category_id>6a5971b5-b152-474f-be8f-d472452f28db</category_id>
    <class_archived>true</class_archived>
    <class_id>7309b15c-4e3a-4e9b-b780-78167454dfd4</class_id>
    <classification>sample string 10</classification>
    <classification_id>417591c4-4f33-4c1b-beba-cca453c0e00a</classification_id>
    <name>sample string 12</name>
    <season_id>16b16d78-7f45-44dc-9d50-a0b9a5eefb42</season_id>
    <type>sample string 14</type>
    <type_id>66758bda-8c48-49c3-b06e-fba04c7ab4e5</type_id>
    <updated>2025-10-13T22:15:52.9512047+01:00</updated>
  </Classification>
</ArrayOfClassification>