POST api/Players?group_id={group_id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
group_id

integer

Required

Body Parameters

Collection of tournament_players
NameDescriptionTypeAdditional information
IndividualName

string

None.

TournamentPlayerId

integer

None.

TournamentPlayersGroupId

integer

None.

ittfid

integer

None.

IsActive

boolean

None.

CreatedBy

integer

None.

LastModifiedBy

integer

None.

LastUpdatedDateTime

date

None.

IsDeleted

boolean

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "IndividualName": "sample string 1",
    "TournamentPlayerId": 1,
    "TournamentPlayersGroupId": 2,
    "ittfid": 3,
    "IsActive": true,
    "CreatedBy": 1,
    "LastModifiedBy": 1,
    "LastUpdatedDateTime": "2025-07-18T16:27:22.2224384+00:00",
    "IsDeleted": true
  },
  {
    "IndividualName": "sample string 1",
    "TournamentPlayerId": 1,
    "TournamentPlayersGroupId": 2,
    "ittfid": 3,
    "IsActive": true,
    "CreatedBy": 1,
    "LastModifiedBy": 1,
    "LastUpdatedDateTime": "2025-07-18T16:27:22.2224384+00:00",
    "IsDeleted": true
  }
]

application/xml, text/xml

Sample:
<ArrayOftournament_players xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers">
  <tournament_players>
    <CreatedBy>1</CreatedBy>
    <IndividualName>sample string 1</IndividualName>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-07-18T16:27:22.2224384+00:00</LastUpdatedDateTime>
    <TournamentPlayerId>1</TournamentPlayerId>
    <TournamentPlayersGroupId>2</TournamentPlayersGroupId>
    <ittfid>3</ittfid>
  </tournament_players>
  <tournament_players>
    <CreatedBy>1</CreatedBy>
    <IndividualName>sample string 1</IndividualName>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-07-18T16:27:22.2224384+00:00</LastUpdatedDateTime>
    <TournamentPlayerId>1</TournamentPlayerId>
    <TournamentPlayersGroupId>2</TournamentPlayersGroupId>
    <ittfid>3</ittfid>
  </tournament_players>
</ArrayOftournament_players>

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>