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| Name | Description | Type | Additional 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": "2026-02-04T18:50:40.7233791+00:00"
},
{
"EventTournamentPhaseId": 1,
"EventId": 1,
"PhaseName": "sample string 2",
"IsActive": true,
"IsDeleted": true,
"Deleted": 1,
"CreatedBy": 1,
"LastModifiedBy": 1,
"LastUpdatedDateTime": "2026-02-04T18:50:40.7233791+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>2026-02-04T18:50:40.7233791+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>2026-02-04T18:50:40.7233791+00:00</LastUpdatedDateTime>
<PhaseName>sample string 2</PhaseName>
</EventTournamentPhasesInfo>
</ArrayOfEventTournamentPhasesInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>