POST
api/v1/get-events-listing
Request Information
Body Parameters
QueryParameters| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| Limit | integer |
None. |
|
| SearchText | string |
None. |
|
| SortField | string |
None. |
|
| SortDirection | string |
None. |
|
| IsB2C | boolean |
None. |
|
| SellerId | integer |
None. |
|
| AdminMemberId | integer |
None. |
|
| ClientId | integer |
None. |
|
| Sortorder | integer |
None. |
Request Formats
application/json, text/json
{
"PageNumber": 1,
"Limit": 2,
"SearchText": "sample string 3",
"SortField": "sample string 4",
"SortDirection": "sample string 5",
"IsB2C": true,
"SellerId": 7,
"AdminMemberId": 8,
"ClientId": 9,
"Sortorder": 10
}
text/html
{"PageNumber":1,"Limit":2,"SearchText":"sample string 3","SortField":"sample string 4","SortDirection":"sample string 5","IsB2C":true,"SellerId":7,"AdminMemberId":8,"ClientId":9,"Sortorder":10}
application/xml, text/xml
<QueryParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models"> <AdminMemberId>8</AdminMemberId> <ClientId>9</ClientId> <IsB2C>true</IsB2C> <Limit>2</Limit> <PageNumber>1</PageNumber> <SearchText>sample string 3</SearchText> <SellerId>7</SellerId> <SortDirection>sample string 5</SortDirection> <SortField>sample string 4</SortField> <Sortorder>10</Sortorder> </QueryParameters>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: EventsModel
Response Formats
application/json, text/json
{
"EventsListing": [
{
"EventMasterId": 1,
"Name": "sample string 2",
"StartDate": "2026-02-05T08:03:40.32959+00:00",
"EndDate": "2026-02-05T08:03:40.32959+00:00",
"Frequency": 4,
"IsLogicalDeleted": true,
"IsActive": true,
"CreatedBy": 7,
"CreatedOn": "2026-02-05T08:03:40.32959+00:00",
"DisplayInFooter": true,
"DisplayOnHome": true,
"SortOrder": 11,
"PublishedBy": 12,
"PublishedOn": "2026-02-05T08:03:40.32959+00:00"
},
{
"EventMasterId": 1,
"Name": "sample string 2",
"StartDate": "2026-02-05T08:03:40.32959+00:00",
"EndDate": "2026-02-05T08:03:40.32959+00:00",
"Frequency": 4,
"IsLogicalDeleted": true,
"IsActive": true,
"CreatedBy": 7,
"CreatedOn": "2026-02-05T08:03:40.32959+00:00",
"DisplayInFooter": true,
"DisplayOnHome": true,
"SortOrder": 11,
"PublishedBy": 12,
"PublishedOn": "2026-02-05T08:03:40.32959+00:00"
}
],
"TotalRecords": 1
}
text/html
{"EventsListing":[{"EventMasterId":1,"Name":"sample string 2","StartDate":"2026-02-05T08:03:40.32959+00:00","EndDate":"2026-02-05T08:03:40.32959+00:00","Frequency":4,"IsLogicalDeleted":true,"IsActive":true,"CreatedBy":7,"CreatedOn":"2026-02-05T08:03:40.32959+00:00","DisplayInFooter":true,"DisplayOnHome":true,"SortOrder":11,"PublishedBy":12,"PublishedOn":"2026-02-05T08:03:40.32959+00:00"},{"EventMasterId":1,"Name":"sample string 2","StartDate":"2026-02-05T08:03:40.32959+00:00","EndDate":"2026-02-05T08:03:40.32959+00:00","Frequency":4,"IsLogicalDeleted":true,"IsActive":true,"CreatedBy":7,"CreatedOn":"2026-02-05T08:03:40.32959+00:00","DisplayInFooter":true,"DisplayOnHome":true,"SortOrder":11,"PublishedBy":12,"PublishedOn":"2026-02-05T08:03:40.32959+00:00"}],"TotalRecords":1}
application/xml, text/xml
<EventsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Events">
<EventsListing>
<EventsListingModel>
<CreatedBy>7</CreatedBy>
<CreatedOn>2026-02-05T08:03:40.32959+00:00</CreatedOn>
<DisplayInFooter>true</DisplayInFooter>
<DisplayOnHome>true</DisplayOnHome>
<EndDate>2026-02-05T08:03:40.32959+00:00</EndDate>
<EventMasterId>1</EventMasterId>
<Frequency>4</Frequency>
<IsActive>true</IsActive>
<IsLogicalDeleted>true</IsLogicalDeleted>
<Name>sample string 2</Name>
<PublishedBy>12</PublishedBy>
<PublishedOn>2026-02-05T08:03:40.32959+00:00</PublishedOn>
<SortOrder>11</SortOrder>
<StartDate>2026-02-05T08:03:40.32959+00:00</StartDate>
</EventsListingModel>
<EventsListingModel>
<CreatedBy>7</CreatedBy>
<CreatedOn>2026-02-05T08:03:40.32959+00:00</CreatedOn>
<DisplayInFooter>true</DisplayInFooter>
<DisplayOnHome>true</DisplayOnHome>
<EndDate>2026-02-05T08:03:40.32959+00:00</EndDate>
<EventMasterId>1</EventMasterId>
<Frequency>4</Frequency>
<IsActive>true</IsActive>
<IsLogicalDeleted>true</IsLogicalDeleted>
<Name>sample string 2</Name>
<PublishedBy>12</PublishedBy>
<PublishedOn>2026-02-05T08:03:40.32959+00:00</PublishedOn>
<SortOrder>11</SortOrder>
<StartDate>2026-02-05T08:03:40.32959+00:00</StartDate>
</EventsListingModel>
</EventsListing>
<TotalRecords>1</TotalRecords>
</EventsModel>
