GET api/Events/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Event
NameDescriptionTypeAdditional information
EventId

integer

None.

EventTitle

string

None.

EventDetail

string

None.

PerformedBy

string

None.

EventDate

date

None.

EventTime

string

None.

CreatedDate

date

None.

CreatedBy

integer

None.

UpdatedDate

date

None.

UpdatedBy

integer

None.

ManchaName

string

None.

URL

string

None.

Response Formats

application/json, text/json

Sample:
{
  "EventId": 1,
  "EventTitle": "sample string 2",
  "EventDetail": "sample string 3",
  "PerformedBy": "sample string 4",
  "EventDate": "2025-12-11T15:32:22.7061599+05:30",
  "EventTime": "sample string 5",
  "CreatedDate": "2025-12-11T15:32:22.7061599+05:30",
  "CreatedBy": 1,
  "UpdatedDate": "2025-12-11T15:32:22.7061599+05:30",
  "UpdatedBy": 1,
  "ManchaName": "sample string 6",
  "URL": "sample string 7"
}

application/xml, text/xml

Sample:
<Event xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BaliYatraApi.DataAccess">
  <CreatedBy>1</CreatedBy>
  <CreatedDate>2025-12-11T15:32:22.7061599+05:30</CreatedDate>
  <EventDate>2025-12-11T15:32:22.7061599+05:30</EventDate>
  <EventDetail>sample string 3</EventDetail>
  <EventId>1</EventId>
  <EventTime>sample string 5</EventTime>
  <EventTitle>sample string 2</EventTitle>
  <ManchaName>sample string 6</ManchaName>
  <PerformedBy>sample string 4</PerformedBy>
  <URL>sample string 7</URL>
  <UpdatedBy>1</UpdatedBy>
  <UpdatedDate>2025-12-11T15:32:22.7061599+05:30</UpdatedDate>
</Event>