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

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

date

None.

archer_archived

boolean

None.

archer_id

globally unique identifier

None.

bow_class

string

None.

class_archived

boolean

None.

class_id

globally unique identifier

None.

handicap

integer

None.

handicap_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-12-24T13:57:38.1044979+00:00",
    "archer_archived": true,
    "archer_id": "b7cff38f-2e34-4b73-b1f9-4ae5a270c46a",
    "bow_class": "sample string 4",
    "class_archived": true,
    "class_id": "304dbece-6f57-4e60-8aa6-d2a0a2d2bf83",
    "handicap": 7,
    "handicap_id": "77f0a71b-f621-4dca-964b-5ec7713cac87",
    "name": "sample string 9",
    "season_id": "fc0da574-11bd-4814-bab9-6ef3711cadf7",
    "type": "sample string 11",
    "type_id": "9f29d862-1434-4300-a3c0-345f7240ea70",
    "updated": "2024-12-24T13:57:38.1044979+00:00"
  },
  {
    "achieved": "2024-12-24T13:57:38.1044979+00:00",
    "archer_archived": true,
    "archer_id": "b7cff38f-2e34-4b73-b1f9-4ae5a270c46a",
    "bow_class": "sample string 4",
    "class_archived": true,
    "class_id": "304dbece-6f57-4e60-8aa6-d2a0a2d2bf83",
    "handicap": 7,
    "handicap_id": "77f0a71b-f621-4dca-964b-5ec7713cac87",
    "name": "sample string 9",
    "season_id": "fc0da574-11bd-4814-bab9-6ef3711cadf7",
    "type": "sample string 11",
    "type_id": "9f29d862-1434-4300-a3c0-345f7240ea70",
    "updated": "2024-12-24T13:57:38.1044979+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfHandicap xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API">
  <Handicap>
    <achieved>2024-12-24T13:57:38.1044979+00:00</achieved>
    <archer_archived>true</archer_archived>
    <archer_id>b7cff38f-2e34-4b73-b1f9-4ae5a270c46a</archer_id>
    <bow_class>sample string 4</bow_class>
    <class_archived>true</class_archived>
    <class_id>304dbece-6f57-4e60-8aa6-d2a0a2d2bf83</class_id>
    <handicap>7</handicap>
    <handicap_id>77f0a71b-f621-4dca-964b-5ec7713cac87</handicap_id>
    <name>sample string 9</name>
    <season_id>fc0da574-11bd-4814-bab9-6ef3711cadf7</season_id>
    <type>sample string 11</type>
    <type_id>9f29d862-1434-4300-a3c0-345f7240ea70</type_id>
    <updated>2024-12-24T13:57:38.1044979+00:00</updated>
  </Handicap>
  <Handicap>
    <achieved>2024-12-24T13:57:38.1044979+00:00</achieved>
    <archer_archived>true</archer_archived>
    <archer_id>b7cff38f-2e34-4b73-b1f9-4ae5a270c46a</archer_id>
    <bow_class>sample string 4</bow_class>
    <class_archived>true</class_archived>
    <class_id>304dbece-6f57-4e60-8aa6-d2a0a2d2bf83</class_id>
    <handicap>7</handicap>
    <handicap_id>77f0a71b-f621-4dca-964b-5ec7713cac87</handicap_id>
    <name>sample string 9</name>
    <season_id>fc0da574-11bd-4814-bab9-6ef3711cadf7</season_id>
    <type>sample string 11</type>
    <type_id>9f29d862-1434-4300-a3c0-345f7240ea70</type_id>
    <updated>2024-12-24T13:57:38.1044979+00:00</updated>
  </Handicap>
</ArrayOfHandicap>