POST api/EventTournamentPhases/CRUD

Add/Update/Delete EventTournamentPhases

Request Information

URI Parameters

None.

Body Parameters

String Array of EventTournamentPhases Names And Information(Mandatory)

Collection of EventTournamentPhasesInfo
NameDescriptionTypeAdditional information
EventTournamentPhaseId

integer

None.

EventId

integer

None.

PhaseName

string

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

Deleted

integer

None.

CreatedBy

integer

None.

LastModifiedBy

integer

None.

LastUpdatedDateTime

date

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "EventTournamentPhaseId": 1,
    "EventId": 1,
    "PhaseName": "sample string 2",
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1,
    "CreatedBy": 1,
    "LastModifiedBy": 1,
    "LastUpdatedDateTime": "2025-07-18T16:10:03.2707531+00:00"
  },
  {
    "EventTournamentPhaseId": 1,
    "EventId": 1,
    "PhaseName": "sample string 2",
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1,
    "CreatedBy": 1,
    "LastModifiedBy": 1,
    "LastUpdatedDateTime": "2025-07-18T16:10:03.2707531+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventTournamentPhasesInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <EventTournamentPhasesInfo>
    <CreatedBy>1</CreatedBy>
    <Deleted>1</Deleted>
    <EventId>1</EventId>
    <EventTournamentPhaseId>1</EventTournamentPhaseId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-07-18T16:10:03.2707531+00:00</LastUpdatedDateTime>
    <PhaseName>sample string 2</PhaseName>
  </EventTournamentPhasesInfo>
  <EventTournamentPhasesInfo>
    <CreatedBy>1</CreatedBy>
    <Deleted>1</Deleted>
    <EventId>1</EventId>
    <EventTournamentPhaseId>1</EventTournamentPhaseId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-07-18T16:10:03.2707531+00:00</LastUpdatedDateTime>
    <PhaseName>sample string 2</PhaseName>
  </EventTournamentPhasesInfo>
</ArrayOfEventTournamentPhasesInfo>

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>