POST api/SubEventPlayerEntries/CRUD/{SubEventId}

Add/Update/Delete SubEvent Player Entries

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SubEventId

integer

Required

Body Parameters

String Array of SubEvent Player Entries Names And Information(Mandatory)

Collection of subevent_player_entry_dc
NameDescriptionTypeAdditional information
SubEventPlayerEntryId

integer

None.

SubEventPlayerEntryCoreId

integer

None.

ittfid

integer

None.

Status

string

None.

Comments

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:
[
  {
    "SubEventPlayerEntryId": 1,
    "SubEventPlayerEntryCoreId": 1,
    "ittfid": 2,
    "Status": "sample string 3",
    "Comments": "sample string 4",
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1,
    "CreatedBy": 1,
    "LastModifiedBy": 1,
    "LastUpdatedDateTime": "2025-07-18T15:48:45.0373116+00:00"
  },
  {
    "SubEventPlayerEntryId": 1,
    "SubEventPlayerEntryCoreId": 1,
    "ittfid": 2,
    "Status": "sample string 3",
    "Comments": "sample string 4",
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1,
    "CreatedBy": 1,
    "LastModifiedBy": 1,
    "LastUpdatedDateTime": "2025-07-18T15:48:45.0373116+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfsubevent_player_entry_dc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers">
  <subevent_player_entry_dc>
    <Comments>sample string 4</Comments>
    <CreatedBy>1</CreatedBy>
    <Deleted>1</Deleted>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-07-18T15:48:45.0373116+00:00</LastUpdatedDateTime>
    <Status>sample string 3</Status>
    <SubEventPlayerEntryCoreId>1</SubEventPlayerEntryCoreId>
    <SubEventPlayerEntryId>1</SubEventPlayerEntryId>
    <ittfid>2</ittfid>
  </subevent_player_entry_dc>
  <subevent_player_entry_dc>
    <Comments>sample string 4</Comments>
    <CreatedBy>1</CreatedBy>
    <Deleted>1</Deleted>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-07-18T15:48:45.0373116+00:00</LastUpdatedDateTime>
    <Status>sample string 3</Status>
    <SubEventPlayerEntryCoreId>1</SubEventPlayerEntryCoreId>
    <SubEventPlayerEntryId>1</SubEventPlayerEntryId>
    <ittfid>2</ittfid>
  </subevent_player_entry_dc>
</ArrayOfsubevent_player_entry_dc>

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>