GET api/GeneralNotification/GetNotificationListPaged?PageNo={PageNo}&PageSize={PageSize}&UserID={UserID}&SearchTerm={SearchTerm}&StrtDate={StrtDate}&EndDate={EndDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PageNo

integer

Required

PageSize

integer

Required

UserID

string

Required

SearchTerm

string

Required

StrtDate

date

Required

EndDate

date

Required

Body Parameters

None.

Response Information

Resource Description

NotificationPagedModel
NameDescriptionTypeAdditional information
Notifications

Collection of NotificationView

None.

TotalRecords

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Notifications": [
    {
      "NotifcationID": 1,
      "NotificationOfUserID": "sample string 2",
      "ProfileName": "sample string 3",
      "NotificationOfID": "sample string 4",
      "NotificationTitle": "sample string 5",
      "NotificationBody": "sample string 6",
      "RedirectionLink": "sample string 7",
      "IsInAppRedirection": true,
      "IsRead": true,
      "NotificationDate": "2025-12-07T09:56:12.5567514+05:30"
    },
    {
      "NotifcationID": 1,
      "NotificationOfUserID": "sample string 2",
      "ProfileName": "sample string 3",
      "NotificationOfID": "sample string 4",
      "NotificationTitle": "sample string 5",
      "NotificationBody": "sample string 6",
      "RedirectionLink": "sample string 7",
      "IsInAppRedirection": true,
      "IsRead": true,
      "NotificationDate": "2025-12-07T09:56:12.5567514+05:30"
    }
  ],
  "TotalRecords": 1
}

application/xml, text/xml

Sample:
<NotificationPagedModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels">
  <Notifications>
    <NotificationView>
      <IsInAppRedirection>true</IsInAppRedirection>
      <IsRead>true</IsRead>
      <NotifcationID>1</NotifcationID>
      <NotificationBody>sample string 6</NotificationBody>
      <NotificationDate>2025-12-07T09:56:12.5567514+05:30</NotificationDate>
      <NotificationOfID>sample string 4</NotificationOfID>
      <NotificationOfUserID>sample string 2</NotificationOfUserID>
      <NotificationTitle>sample string 5</NotificationTitle>
      <ProfileName>sample string 3</ProfileName>
      <RedirectionLink>sample string 7</RedirectionLink>
    </NotificationView>
    <NotificationView>
      <IsInAppRedirection>true</IsInAppRedirection>
      <IsRead>true</IsRead>
      <NotifcationID>1</NotifcationID>
      <NotificationBody>sample string 6</NotificationBody>
      <NotificationDate>2025-12-07T09:56:12.5567514+05:30</NotificationDate>
      <NotificationOfID>sample string 4</NotificationOfID>
      <NotificationOfUserID>sample string 2</NotificationOfUserID>
      <NotificationTitle>sample string 5</NotificationTitle>
      <ProfileName>sample string 3</ProfileName>
      <RedirectionLink>sample string 7</RedirectionLink>
    </NotificationView>
  </Notifications>
  <TotalRecords>1</TotalRecords>
</NotificationPagedModel>