POST api/SubEventDrawType/CRUD

Add/Update/Delete SubEventDrawTypes

Request Information

URI Parameters

None.

Body Parameters

String Array of SubEventDrawTypes And Information(Mandatory)

Collection of SubEventDrawTypeInfo
NameDescriptionTypeAdditional information
SubEventDrawTypeId

integer

None.

SubEventDrawTypeName

string

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "SubEventDrawTypeId": 1,
    "SubEventDrawTypeName": "sample string 2",
    "IsActive": true,
    "IsDeleted": true
  },
  {
    "SubEventDrawTypeId": 1,
    "SubEventDrawTypeName": "sample string 2",
    "IsActive": true,
    "IsDeleted": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfSubEventDrawTypeInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1">
  <SubEventDrawTypeInfo>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <SubEventDrawTypeId>1</SubEventDrawTypeId>
    <SubEventDrawTypeName>sample string 2</SubEventDrawTypeName>
  </SubEventDrawTypeInfo>
  <SubEventDrawTypeInfo>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <SubEventDrawTypeId>1</SubEventDrawTypeId>
    <SubEventDrawTypeName>sample string 2</SubEventDrawTypeName>
  </SubEventDrawTypeInfo>
</ArrayOfSubEventDrawTypeInfo>

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>