GET api/Events/ByDate/{day}

Get event details for a specified day

Request Information

URI Parameters

NameDescriptionTypeAdditional information
day

Date of requested events (uses Start Date only)

date

Required

Body Parameters

None.

Response Information

Resource Description

EventReportDetails()

EventReportDetails
NameDescriptionTypeAdditional information
eventID

integer

None.

eventName

string

None.

eventDetails

string

None.

eventDate_Start

date

None.

eventDate_End

date

None.

eventPenalyRates

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "eventID": 707,
  "eventName": "sample string 2",
  "eventDetails": "sample string 3",
  "eventDate_Start": "2024-04-19T17:29:49.4027646+10:00",
  "eventDate_End": "2024-04-19T17:29:49.4027646+10:00",
  "eventPenalyRates": true
}

application/xml, text/xml

Sample:
<EventReportDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Turnpoint.Controllers">
  <eventDate_End>2024-04-19T17:29:49.4027646+10:00</eventDate_End>
  <eventDate_Start>2024-04-19T17:29:49.4027646+10:00</eventDate_Start>
  <eventDetails>sample string 3</eventDetails>
  <eventID>707</eventID>
  <eventName>sample string 2</eventName>
  <eventPenalyRates>true</eventPenalyRates>
</EventReportDetails>