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

Lists all score records. 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 Score
NameDescriptionTypeAdditional information
name

string

None.

date_shot

date

None.

round

string

None.

location

string

None.

bow_class

string

None.

category

string

None.

score

integer

None.

hits

integer

None.

golds

integer

None.

tens

integer

None.

classification

string

None.

handicap

integer

None.

record_status

boolean

None.

qualifying

boolean

None.

archer_id

globally unique identifier

None.

record_id

globally unique identifier

None.

class_id

globally unique identifier

None.

category_id

globally unique identifier

None.

round_id

globally unique identifier

None.

season_id

globally unique identifier

None.

class_archived

boolean

None.

round_archived

boolean

None.

category_archived

boolean

None.

season_archived

boolean

None.

season

string

None.

user_1

string

None.

user_2

string

None.

status

string

None.

notes

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "name": "sample string 1",
    "date_shot": "2024-10-21T08:34:50.6817145+01:00",
    "round": "sample string 3",
    "location": "sample string 4",
    "bow_class": "sample string 5",
    "category": "sample string 6",
    "score": 7,
    "hits": 8,
    "golds": 9,
    "tens": 10,
    "classification": "sample string 11",
    "handicap": 12,
    "record_status": true,
    "qualifying": true,
    "archer_id": "a339e089-7e85-41e1-83d3-26706b57d474",
    "record_id": "72273a59-70f9-40fe-8795-93f405b5702f",
    "class_id": "5ca67417-c8c1-47d7-a32f-0519c3ce3f37",
    "category_id": "115761a1-0a5c-4d04-8648-de4789674f19",
    "round_id": "aaafb5e4-e1b6-48c4-a2ad-c8eb14c7b882",
    "season_id": "997a0337-7ca7-4771-b940-701864cbb2bb",
    "class_archived": true,
    "round_archived": true,
    "category_archived": true,
    "season_archived": true,
    "season": "sample string 25",
    "user_1": "sample string 26",
    "user_2": "sample string 27",
    "status": "sample string 28",
    "notes": "sample string 29"
  },
  {
    "name": "sample string 1",
    "date_shot": "2024-10-21T08:34:50.6817145+01:00",
    "round": "sample string 3",
    "location": "sample string 4",
    "bow_class": "sample string 5",
    "category": "sample string 6",
    "score": 7,
    "hits": 8,
    "golds": 9,
    "tens": 10,
    "classification": "sample string 11",
    "handicap": 12,
    "record_status": true,
    "qualifying": true,
    "archer_id": "a339e089-7e85-41e1-83d3-26706b57d474",
    "record_id": "72273a59-70f9-40fe-8795-93f405b5702f",
    "class_id": "5ca67417-c8c1-47d7-a32f-0519c3ce3f37",
    "category_id": "115761a1-0a5c-4d04-8648-de4789674f19",
    "round_id": "aaafb5e4-e1b6-48c4-a2ad-c8eb14c7b882",
    "season_id": "997a0337-7ca7-4771-b940-701864cbb2bb",
    "class_archived": true,
    "round_archived": true,
    "category_archived": true,
    "season_archived": true,
    "season": "sample string 25",
    "user_1": "sample string 26",
    "user_2": "sample string 27",
    "status": "sample string 28",
    "notes": "sample string 29"
  }
]

application/xml, text/xml

Sample:
<ArrayOfScore xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Golden_Records_App.Models">
  <Score>
    <archer_id>a339e089-7e85-41e1-83d3-26706b57d474</archer_id>
    <bow_class>sample string 5</bow_class>
    <category>sample string 6</category>
    <category_archived>true</category_archived>
    <category_id>115761a1-0a5c-4d04-8648-de4789674f19</category_id>
    <class_archived>true</class_archived>
    <class_id>5ca67417-c8c1-47d7-a32f-0519c3ce3f37</class_id>
    <classification>sample string 11</classification>
    <date_shot>2024-10-21T08:34:50.6817145+01:00</date_shot>
    <golds>9</golds>
    <handicap>12</handicap>
    <hits>8</hits>
    <location>sample string 4</location>
    <name>sample string 1</name>
    <notes>sample string 29</notes>
    <qualifying>true</qualifying>
    <record_id>72273a59-70f9-40fe-8795-93f405b5702f</record_id>
    <record_status>true</record_status>
    <round>sample string 3</round>
    <round_archived>true</round_archived>
    <round_id>aaafb5e4-e1b6-48c4-a2ad-c8eb14c7b882</round_id>
    <score>7</score>
    <season>sample string 25</season>
    <season_archived>true</season_archived>
    <season_id>997a0337-7ca7-4771-b940-701864cbb2bb</season_id>
    <status>sample string 28</status>
    <tens>10</tens>
    <user_1>sample string 26</user_1>
    <user_2>sample string 27</user_2>
  </Score>
  <Score>
    <archer_id>a339e089-7e85-41e1-83d3-26706b57d474</archer_id>
    <bow_class>sample string 5</bow_class>
    <category>sample string 6</category>
    <category_archived>true</category_archived>
    <category_id>115761a1-0a5c-4d04-8648-de4789674f19</category_id>
    <class_archived>true</class_archived>
    <class_id>5ca67417-c8c1-47d7-a32f-0519c3ce3f37</class_id>
    <classification>sample string 11</classification>
    <date_shot>2024-10-21T08:34:50.6817145+01:00</date_shot>
    <golds>9</golds>
    <handicap>12</handicap>
    <hits>8</hits>
    <location>sample string 4</location>
    <name>sample string 1</name>
    <notes>sample string 29</notes>
    <qualifying>true</qualifying>
    <record_id>72273a59-70f9-40fe-8795-93f405b5702f</record_id>
    <record_status>true</record_status>
    <round>sample string 3</round>
    <round_archived>true</round_archived>
    <round_id>aaafb5e4-e1b6-48c4-a2ad-c8eb14c7b882</round_id>
    <score>7</score>
    <season>sample string 25</season>
    <season_archived>true</season_archived>
    <season_id>997a0337-7ca7-4771-b940-701864cbb2bb</season_id>
    <status>sample string 28</status>
    <tens>10</tens>
    <user_1>sample string 26</user_1>
    <user_2>sample string 27</user_2>
  </Score>
</ArrayOfScore>

multipart/form-data

Sample:
<ArrayOfScore xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Golden_Records_App.Models"><Score><archer_id>a339e089-7e85-41e1-83d3-26706b57d474</archer_id><bow_class>sample string 5</bow_class><category>sample string 6</category><category_archived>true</category_archived><category_id>115761a1-0a5c-4d04-8648-de4789674f19</category_id><class_archived>true</class_archived><class_id>5ca67417-c8c1-47d7-a32f-0519c3ce3f37</class_id><classification>sample string 11</classification><date_shot>2024-10-21T08:34:50.6817145+01:00</date_shot><golds>9</golds><handicap>12</handicap><hits>8</hits><location>sample string 4</location><name>sample string 1</name><notes>sample string 29</notes><qualifying>true</qualifying><record_id>72273a59-70f9-40fe-8795-93f405b5702f</record_id><record_status>true</record_status><round>sample string 3</round><round_archived>true</round_archived><round_id>aaafb5e4-e1b6-48c4-a2ad-c8eb14c7b882</round_id><score>7</score><season>sample string 25</season><season_archived>true</season_archived><season_id>997a0337-7ca7-4771-b940-701864cbb2bb</season_id><status>sample string 28</status><tens>10</tens><user_1>sample string 26</user_1><user_2>sample string 27</user_2></Score><Score><archer_id>a339e089-7e85-41e1-83d3-26706b57d474</archer_id><bow_class>sample string 5</bow_class><category>sample string 6</category><category_archived>true</category_archived><category_id>115761a1-0a5c-4d04-8648-de4789674f19</category_id><class_archived>true</class_archived><class_id>5ca67417-c8c1-47d7-a32f-0519c3ce3f37</class_id><classification>sample string 11</classification><date_shot>2024-10-21T08:34:50.6817145+01:00</date_shot><golds>9</golds><handicap>12</handicap><hits>8</hits><location>sample string 4</location><name>sample string 1</name><notes>sample string 29</notes><qualifying>true</qualifying><record_id>72273a59-70f9-40fe-8795-93f405b5702f</record_id><record_status>true</record_status><round>sample string 3</round><round_archived>true</round_archived><round_id>aaafb5e4-e1b6-48c4-a2ad-c8eb14c7b882</round_id><score>7</score><season>sample string 25</season><season_archived>true</season_archived><season_id>997a0337-7ca7-4771-b940-701864cbb2bb</season_id><status>sample string 28</status><tens>10</tens><user_1>sample string 26</user_1><user_2>sample string 27</user_2></Score></ArrayOfScore>