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

Lists all classifications. 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 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": "2024-05-21T21:47:44.2631912+01:00",
    "archer_archived": true,
    "archer_id": "4d858afb-540b-46d5-b7e9-e337c4561913",
    "bow_class": "sample string 4",
    "category": "sample string 5",
    "category_archived": true,
    "category_id": "064cf496-3bec-4208-9359-8fab96bd89e3",
    "class_archived": true,
    "class_id": "fd8dc7d5-2791-4b4d-98a7-672f6eb0d276",
    "classification": "sample string 10",
    "classification_id": "94b7d1bb-3848-47c6-80a1-146d67328b1e",
    "name": "sample string 12",
    "season_id": "2e17893d-9669-4e1c-8dc7-87e6e60e2e1e",
    "type": "sample string 14",
    "type_id": "8517a41a-5b00-4cd1-92d0-845b7ac5a5da",
    "updated": "2024-05-21T21:47:44.2631912+01:00"
  },
  {
    "achieved": "2024-05-21T21:47:44.2631912+01:00",
    "archer_archived": true,
    "archer_id": "4d858afb-540b-46d5-b7e9-e337c4561913",
    "bow_class": "sample string 4",
    "category": "sample string 5",
    "category_archived": true,
    "category_id": "064cf496-3bec-4208-9359-8fab96bd89e3",
    "class_archived": true,
    "class_id": "fd8dc7d5-2791-4b4d-98a7-672f6eb0d276",
    "classification": "sample string 10",
    "classification_id": "94b7d1bb-3848-47c6-80a1-146d67328b1e",
    "name": "sample string 12",
    "season_id": "2e17893d-9669-4e1c-8dc7-87e6e60e2e1e",
    "type": "sample string 14",
    "type_id": "8517a41a-5b00-4cd1-92d0-845b7ac5a5da",
    "updated": "2024-05-21T21:47:44.2631912+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>2024-05-21T21:47:44.2631912+01:00</achieved>
    <archer_archived>true</archer_archived>
    <archer_id>4d858afb-540b-46d5-b7e9-e337c4561913</archer_id>
    <bow_class>sample string 4</bow_class>
    <category>sample string 5</category>
    <category_archived>true</category_archived>
    <category_id>064cf496-3bec-4208-9359-8fab96bd89e3</category_id>
    <class_archived>true</class_archived>
    <class_id>fd8dc7d5-2791-4b4d-98a7-672f6eb0d276</class_id>
    <classification>sample string 10</classification>
    <classification_id>94b7d1bb-3848-47c6-80a1-146d67328b1e</classification_id>
    <name>sample string 12</name>
    <season_id>2e17893d-9669-4e1c-8dc7-87e6e60e2e1e</season_id>
    <type>sample string 14</type>
    <type_id>8517a41a-5b00-4cd1-92d0-845b7ac5a5da</type_id>
    <updated>2024-05-21T21:47:44.2631912+01:00</updated>
  </Classification>
  <Classification>
    <achieved>2024-05-21T21:47:44.2631912+01:00</achieved>
    <archer_archived>true</archer_archived>
    <archer_id>4d858afb-540b-46d5-b7e9-e337c4561913</archer_id>
    <bow_class>sample string 4</bow_class>
    <category>sample string 5</category>
    <category_archived>true</category_archived>
    <category_id>064cf496-3bec-4208-9359-8fab96bd89e3</category_id>
    <class_archived>true</class_archived>
    <class_id>fd8dc7d5-2791-4b4d-98a7-672f6eb0d276</class_id>
    <classification>sample string 10</classification>
    <classification_id>94b7d1bb-3848-47c6-80a1-146d67328b1e</classification_id>
    <name>sample string 12</name>
    <season_id>2e17893d-9669-4e1c-8dc7-87e6e60e2e1e</season_id>
    <type>sample string 14</type>
    <type_id>8517a41a-5b00-4cd1-92d0-845b7ac5a5da</type_id>
    <updated>2024-05-21T21:47:44.2631912+01:00</updated>
  </Classification>
</ArrayOfClassification>