POST api/TournamentCompetitionRound/CRUD

Add/Update/Delete Tournament Competition Rounds

Request Information

URI Parameters

None.

Body Parameters

String Array of TournamentCompetitionRounds And Information(Mandatory)

Collection of TournamentCompetitionRoundInfo
NameDescriptionTypeAdditional information
TournamentCompetitionRoundId

integer

None.

TournamentCompetitionRoundName

string

None.

NoOfTotalMatches

integer

None.

NoOfQualificationRound

integer

None.

IsActive

boolean

None.

Deleted

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "TournamentCompetitionRoundId": 1,
    "TournamentCompetitionRoundName": "sample string 2",
    "NoOfTotalMatches": 3,
    "NoOfQualificationRound": 4,
    "IsActive": true,
    "Deleted": 1
  },
  {
    "TournamentCompetitionRoundId": 1,
    "TournamentCompetitionRoundName": "sample string 2",
    "NoOfTotalMatches": 3,
    "NoOfQualificationRound": 4,
    "IsActive": true,
    "Deleted": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfTournamentCompetitionRoundInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1">
  <TournamentCompetitionRoundInfo>
    <Deleted>1</Deleted>
    <IsActive>true</IsActive>
    <NoOfQualificationRound>4</NoOfQualificationRound>
    <NoOfTotalMatches>3</NoOfTotalMatches>
    <TournamentCompetitionRoundId>1</TournamentCompetitionRoundId>
    <TournamentCompetitionRoundName>sample string 2</TournamentCompetitionRoundName>
  </TournamentCompetitionRoundInfo>
  <TournamentCompetitionRoundInfo>
    <Deleted>1</Deleted>
    <IsActive>true</IsActive>
    <NoOfQualificationRound>4</NoOfQualificationRound>
    <NoOfTotalMatches>3</NoOfTotalMatches>
    <TournamentCompetitionRoundId>1</TournamentCompetitionRoundId>
    <TournamentCompetitionRoundName>sample string 2</TournamentCompetitionRoundName>
  </TournamentCompetitionRoundInfo>
</ArrayOfTournamentCompetitionRoundInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>