GET api/v{version}/tournamenttypegroup?page={page}&pageSize={pageSize}

Get all available tournamenttypes

Request Information

URI Parameters

NameDescriptionTypeAdditional information
page

integer

Default value is 0

pageSize

integer

Default value is 0

version

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TournamentTypeGroupViewModel
NameDescriptionTypeAdditional information
TournamentTypeGroupId

integer

None.

Name

string

None.

Slug

string

None.

DisplayOrder

integer

None.

Url

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TournamentTypeGroupId": 1,
    "Name": "sample string 2",
    "Slug": "sample string 3",
    "DisplayOrder": 4,
    "Url": "sample string 5"
  },
  {
    "TournamentTypeGroupId": 1,
    "Name": "sample string 2",
    "Slug": "sample string 3",
    "DisplayOrder": 4,
    "Url": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTournamentTypeGroupViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DartStat.Web.Areas.Apiv2.Mappers">
  <TournamentTypeGroupViewModel>
    <DisplayOrder>4</DisplayOrder>
    <Name>sample string 2</Name>
    <Slug>sample string 3</Slug>
    <TournamentTypeGroupId>1</TournamentTypeGroupId>
    <Url>sample string 5</Url>
  </TournamentTypeGroupViewModel>
  <TournamentTypeGroupViewModel>
    <DisplayOrder>4</DisplayOrder>
    <Name>sample string 2</Name>
    <Slug>sample string 3</Slug>
    <TournamentTypeGroupId>1</TournamentTypeGroupId>
    <Url>sample string 5</Url>
  </TournamentTypeGroupViewModel>
</ArrayOfTournamentTypeGroupViewModel>