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

Lists all rounds.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pageNumber

integer

None.

pageSize

integer

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Round
NameDescriptionTypeAdditional information
active

boolean

None.

locale

string

None.

lookup

string

None.

max_score

integer

None.

round

string

None.

round_archived

boolean

None.

round_id

globally unique identifier

None.

type

string

None.

type_id

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "active": true,
    "locale": "sample string 2",
    "lookup": "sample string 3",
    "max_score": 4,
    "round": "sample string 5",
    "round_archived": true,
    "round_id": "1dd3876c-bbae-4820-b046-e26d121bf4c3",
    "type": "sample string 8",
    "type_id": "0d29c8f5-bd92-4be2-92c8-b5981231b65f"
  },
  {
    "active": true,
    "locale": "sample string 2",
    "lookup": "sample string 3",
    "max_score": 4,
    "round": "sample string 5",
    "round_archived": true,
    "round_id": "1dd3876c-bbae-4820-b046-e26d121bf4c3",
    "type": "sample string 8",
    "type_id": "0d29c8f5-bd92-4be2-92c8-b5981231b65f"
  }
]

application/xml, text/xml

Sample:
<ArrayOfRound xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API">
  <Round>
    <active>true</active>
    <locale>sample string 2</locale>
    <lookup>sample string 3</lookup>
    <max_score>4</max_score>
    <round>sample string 5</round>
    <round_archived>true</round_archived>
    <round_id>1dd3876c-bbae-4820-b046-e26d121bf4c3</round_id>
    <type>sample string 8</type>
    <type_id>0d29c8f5-bd92-4be2-92c8-b5981231b65f</type_id>
  </Round>
  <Round>
    <active>true</active>
    <locale>sample string 2</locale>
    <lookup>sample string 3</lookup>
    <max_score>4</max_score>
    <round>sample string 5</round>
    <round_archived>true</round_archived>
    <round_id>1dd3876c-bbae-4820-b046-e26d121bf4c3</round_id>
    <type>sample string 8</type>
    <type_id>0d29c8f5-bd92-4be2-92c8-b5981231b65f</type_id>
  </Round>
</ArrayOfRound>