GET api/EventsDraws/{id}
Get Event Draws by matching the provided id
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
ListEventDraws| Name | Description | Type | Additional information | 
|---|---|---|---|
| EventDrawsId | integer | None. | |
| EventId | integer | None. | |
| DrawName | string | None. | |
| StartDateTime | date | None. | |
| EndDateTime | date | None. | |
| Venue | string | None. | |
| IsActive | boolean | None. | |
| IsDeleted | boolean | None. | |
| EventName | string | None. | |
| EventCode | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "EventDrawsId": 1,
  "EventId": 2,
  "DrawName": "sample string 3",
  "StartDateTime": "2025-10-31T09:44:06.0353615+00:00",
  "EndDateTime": "2025-10-31T09:44:06.0353615+00:00",
  "Venue": "sample string 4",
  "IsActive": true,
  "IsDeleted": true,
  "EventName": "sample string 5",
  "EventCode": "sample string 6"
}
        application/xml, text/xml
            Sample:
<ListEventDraws xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers"> <DrawName>sample string 3</DrawName> <EndDateTime>2025-10-31T09:44:06.0353615+00:00</EndDateTime> <EventCode>sample string 6</EventCode> <EventDrawsId>1</EventDrawsId> <EventId>2</EventId> <EventName>sample string 5</EventName> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <StartDateTime>2025-10-31T09:44:06.0353615+00:00</StartDateTime> <Venue>sample string 4</Venue> </ListEventDraws>