GET api/v{version}/tournamenttypegroup/{id}

Get the information of a specific tournament type group.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

tournament type group id

integer

Required

version

string

None.

Body Parameters

None.

Response Information

Resource Description

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"
}

application/xml, text/xml

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