POST api/PlayerEntryDrawType/CRUD
Add/Update/Delete PlayerEntryDrawTypes
Request Information
URI Parameters
None.
Body Parameters
String Array of MatchConfigurations And Information(Mandatory)
Collection of PlayerEntryDrawTypeInfo| Name | Description | Type | Additional information | 
|---|---|---|---|
| PlayerEntryDrawTypeId | integer | None. | |
| Code | string | None. | |
| Name | string | None. | |
| EventCoreTypeId | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
[
  {
    "PlayerEntryDrawTypeId": 1,
    "Code": "sample string 2",
    "Name": "sample string 3",
    "EventCoreTypeId": 4
  },
  {
    "PlayerEntryDrawTypeId": 1,
    "Code": "sample string 2",
    "Name": "sample string 3",
    "EventCoreTypeId": 4
  }
]
        application/xml, text/xml
            Sample:
        
<ArrayOfPlayerEntryDrawTypeInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1">
  <PlayerEntryDrawTypeInfo>
    <Code>sample string 2</Code>
    <EventCoreTypeId>4</EventCoreTypeId>
    <Name>sample string 3</Name>
    <PlayerEntryDrawTypeId>1</PlayerEntryDrawTypeId>
  </PlayerEntryDrawTypeInfo>
  <PlayerEntryDrawTypeInfo>
    <Code>sample string 2</Code>
    <EventCoreTypeId>4</EventCoreTypeId>
    <Name>sample string 3</Name>
    <PlayerEntryDrawTypeId>1</PlayerEntryDrawTypeId>
  </PlayerEntryDrawTypeInfo>
</ArrayOfPlayerEntryDrawTypeInfo>
        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>