POST api/EventDraws/CRUD
Add/Update/Delete EventDraws
Request Information
URI Parameters
None.
Body Parameters
String Array of EventDraws Names And Information(Mandatory)
Collection of EventDrawsInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| EventDrawsId | integer |
None. |
|
| EventId | integer |
None. |
|
| DrawName | string |
None. |
|
| StartDateTime | date |
None. |
|
| EndDateTime | date |
None. |
|
| Venue | string |
None. |
|
| TimeZoneId | integer |
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:
[
{
"EventDrawsId": 1,
"EventId": 1,
"DrawName": "sample string 2",
"StartDateTime": "2026-02-04T12:50:02.7623041+00:00",
"EndDateTime": "2026-02-04T12:50:02.7623041+00:00",
"Venue": "sample string 3",
"TimeZoneId": 1,
"IsActive": true,
"IsDeleted": true,
"Deleted": 1,
"CreatedBy": 1,
"LastModifiedBy": 1,
"LastUpdatedDateTime": "2026-02-04T12:50:02.7623041+00:00"
},
{
"EventDrawsId": 1,
"EventId": 1,
"DrawName": "sample string 2",
"StartDateTime": "2026-02-04T12:50:02.7623041+00:00",
"EndDateTime": "2026-02-04T12:50:02.7623041+00:00",
"Venue": "sample string 3",
"TimeZoneId": 1,
"IsActive": true,
"IsDeleted": true,
"Deleted": 1,
"CreatedBy": 1,
"LastModifiedBy": 1,
"LastUpdatedDateTime": "2026-02-04T12:50:02.7623041+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfEventDrawsInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
<EventDrawsInfo>
<CreatedBy>1</CreatedBy>
<Deleted>1</Deleted>
<DrawName>sample string 2</DrawName>
<EndDateTime>2026-02-04T12:50:02.7623041+00:00</EndDateTime>
<EventDrawsId>1</EventDrawsId>
<EventId>1</EventId>
<IsActive>true</IsActive>
<IsDeleted>true</IsDeleted>
<LastModifiedBy>1</LastModifiedBy>
<LastUpdatedDateTime>2026-02-04T12:50:02.7623041+00:00</LastUpdatedDateTime>
<StartDateTime>2026-02-04T12:50:02.7623041+00:00</StartDateTime>
<TimeZoneId>1</TimeZoneId>
<Venue>sample string 3</Venue>
</EventDrawsInfo>
<EventDrawsInfo>
<CreatedBy>1</CreatedBy>
<Deleted>1</Deleted>
<DrawName>sample string 2</DrawName>
<EndDateTime>2026-02-04T12:50:02.7623041+00:00</EndDateTime>
<EventDrawsId>1</EventDrawsId>
<EventId>1</EventId>
<IsActive>true</IsActive>
<IsDeleted>true</IsDeleted>
<LastModifiedBy>1</LastModifiedBy>
<LastUpdatedDateTime>2026-02-04T12:50:02.7623041+00:00</LastUpdatedDateTime>
<StartDateTime>2026-02-04T12:50:02.7623041+00:00</StartDateTime>
<TimeZoneId>1</TimeZoneId>
<Venue>sample string 3</Venue>
</EventDrawsInfo>
</ArrayOfEventDrawsInfo>
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>