GET api/Events/GetEventsListDetails?PageNo={PageNo}&PageSize={PageSize}&SearchTerm={SearchTerm}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNo | integer |
Required |
|
| PageSize | integer |
Required |
|
| SearchTerm | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
EventsViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| EventList | Collection of EventsModel |
None. |
|
| TotalRecords | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"EventList": [
{
"EventId": 1,
"Title": "sample string 2",
"Description": "sample string 3",
"ImagePath": "sample string 4",
"OrganisedBy": "sample string 5",
"Venue": "sample string 6",
"StartDate": "2025-10-28T01:03:14.6802487+05:30",
"EndDate": "2025-10-28T01:03:14.6802487+05:30",
"TransDate": "2025-10-28T01:03:14.6802487+05:30",
"UserId": "sample string 10"
},
{
"EventId": 1,
"Title": "sample string 2",
"Description": "sample string 3",
"ImagePath": "sample string 4",
"OrganisedBy": "sample string 5",
"Venue": "sample string 6",
"StartDate": "2025-10-28T01:03:14.6802487+05:30",
"EndDate": "2025-10-28T01:03:14.6802487+05:30",
"TransDate": "2025-10-28T01:03:14.6802487+05:30",
"UserId": "sample string 10"
}
],
"TotalRecords": 1
}
application/xml, text/xml
Sample:
<EventsViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operation.CustomModels">
<EventList>
<EventsModel>
<Description>sample string 3</Description>
<EndDate>2025-10-28T01:03:14.6802487+05:30</EndDate>
<EventId>1</EventId>
<ImagePath>sample string 4</ImagePath>
<OrganisedBy>sample string 5</OrganisedBy>
<StartDate>2025-10-28T01:03:14.6802487+05:30</StartDate>
<Title>sample string 2</Title>
<TransDate>2025-10-28T01:03:14.6802487+05:30</TransDate>
<UserId>sample string 10</UserId>
<Venue>sample string 6</Venue>
</EventsModel>
<EventsModel>
<Description>sample string 3</Description>
<EndDate>2025-10-28T01:03:14.6802487+05:30</EndDate>
<EventId>1</EventId>
<ImagePath>sample string 4</ImagePath>
<OrganisedBy>sample string 5</OrganisedBy>
<StartDate>2025-10-28T01:03:14.6802487+05:30</StartDate>
<Title>sample string 2</Title>
<TransDate>2025-10-28T01:03:14.6802487+05:30</TransDate>
<UserId>sample string 10</UserId>
<Venue>sample string 6</Venue>
</EventsModel>
</EventList>
<TotalRecords>1</TotalRecords>
</EventsViewModel>