GET api/clubrecords?filter_id={filter_id}&pageNumber={pageNumber}&pageSize={pageSize}

Lists club records filtered by the provided id in GUID format. For example class_id will list all club records with that class id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
filter_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 ClubRecord
NameDescriptionTypeAdditional information
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.

date_shot

date

None.

golds

integer

None.

hits

integer

None.

location

string

None.

name

string

None.

record_id

globally unique identifier

None.

round

string

None.

round_archived

boolean

None.

round_id

globally unique identifier

None.

score

integer

None.

status

string

None.

tens

integer

None.

type_id

globally unique identifier

None.

updated

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "archer_archived": true,
    "archer_id": "a22020c7-3384-4d85-a91b-6b923099f22f",
    "bow_class": "sample string 3",
    "category": "sample string 4",
    "category_archived": true,
    "category_id": "500896d2-07a8-4f3f-b74a-6744f6bbc7b4",
    "class_archived": true,
    "class_id": "d39a47ba-61fa-4aa4-ab13-af898ee124e1",
    "date_shot": "2024-05-21T16:14:13.5119658+01:00",
    "golds": 1,
    "hits": 1,
    "location": "sample string 10",
    "name": "sample string 11",
    "record_id": "a252fc81-eb93-4d4d-8bab-7e7aec391063",
    "round": "sample string 13",
    "round_archived": true,
    "round_id": "d5dc9be0-045a-468f-b4ae-370982f764a2",
    "score": 1,
    "status": "sample string 16",
    "tens": 1,
    "type_id": "35bc3370-d95f-4591-b063-da56fdf62152",
    "updated": "2024-05-21T16:14:13.5119658+01:00"
  },
  {
    "archer_archived": true,
    "archer_id": "a22020c7-3384-4d85-a91b-6b923099f22f",
    "bow_class": "sample string 3",
    "category": "sample string 4",
    "category_archived": true,
    "category_id": "500896d2-07a8-4f3f-b74a-6744f6bbc7b4",
    "class_archived": true,
    "class_id": "d39a47ba-61fa-4aa4-ab13-af898ee124e1",
    "date_shot": "2024-05-21T16:14:13.5119658+01:00",
    "golds": 1,
    "hits": 1,
    "location": "sample string 10",
    "name": "sample string 11",
    "record_id": "a252fc81-eb93-4d4d-8bab-7e7aec391063",
    "round": "sample string 13",
    "round_archived": true,
    "round_id": "d5dc9be0-045a-468f-b4ae-370982f764a2",
    "score": 1,
    "status": "sample string 16",
    "tens": 1,
    "type_id": "35bc3370-d95f-4591-b063-da56fdf62152",
    "updated": "2024-05-21T16:14:13.5119658+01:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfClubRecord xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API.Models">
  <ClubRecord>
    <archer_archived>true</archer_archived>
    <archer_id>a22020c7-3384-4d85-a91b-6b923099f22f</archer_id>
    <bow_class>sample string 3</bow_class>
    <category>sample string 4</category>
    <category_archived>true</category_archived>
    <category_id>500896d2-07a8-4f3f-b74a-6744f6bbc7b4</category_id>
    <class_archived>true</class_archived>
    <class_id>d39a47ba-61fa-4aa4-ab13-af898ee124e1</class_id>
    <date_shot>2024-05-21T16:14:13.5119658+01:00</date_shot>
    <golds>1</golds>
    <hits>1</hits>
    <location>sample string 10</location>
    <name>sample string 11</name>
    <record_id>a252fc81-eb93-4d4d-8bab-7e7aec391063</record_id>
    <round>sample string 13</round>
    <round_archived>true</round_archived>
    <round_id>d5dc9be0-045a-468f-b4ae-370982f764a2</round_id>
    <score>1</score>
    <status>sample string 16</status>
    <tens>1</tens>
    <type_id>35bc3370-d95f-4591-b063-da56fdf62152</type_id>
    <updated>2024-05-21T16:14:13.5119658+01:00</updated>
  </ClubRecord>
  <ClubRecord>
    <archer_archived>true</archer_archived>
    <archer_id>a22020c7-3384-4d85-a91b-6b923099f22f</archer_id>
    <bow_class>sample string 3</bow_class>
    <category>sample string 4</category>
    <category_archived>true</category_archived>
    <category_id>500896d2-07a8-4f3f-b74a-6744f6bbc7b4</category_id>
    <class_archived>true</class_archived>
    <class_id>d39a47ba-61fa-4aa4-ab13-af898ee124e1</class_id>
    <date_shot>2024-05-21T16:14:13.5119658+01:00</date_shot>
    <golds>1</golds>
    <hits>1</hits>
    <location>sample string 10</location>
    <name>sample string 11</name>
    <record_id>a252fc81-eb93-4d4d-8bab-7e7aec391063</record_id>
    <round>sample string 13</round>
    <round_archived>true</round_archived>
    <round_id>d5dc9be0-045a-468f-b4ae-370982f764a2</round_id>
    <score>1</score>
    <status>sample string 16</status>
    <tens>1</tens>
    <type_id>35bc3370-d95f-4591-b063-da56fdf62152</type_id>
    <updated>2024-05-21T16:14:13.5119658+01:00</updated>
  </ClubRecord>
</ArrayOfClubRecord>