GET api/GeneralNotification/GetAllNotificationsByUserID?UserID={UserID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UserID

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of utblNotification
NameDescriptionTypeAdditional information
NotifcationID

integer

None.

NotificationOfUserID

string

Required

NotificationOfID

string

None.

NotificationTitle

string

Required

NotificationBody

string

None.

RedirectionLink

string

None.

IsInAppRedirection

boolean

None.

IsRead

boolean

None.

NotificationDate

date

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ArrayOfutblNotification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.Models">
  <utblNotification>
    <IsInAppRedirection>true</IsInAppRedirection>
    <IsRead>true</IsRead>
    <NotifcationID>1</NotifcationID>
    <NotificationBody>sample string 5</NotificationBody>
    <NotificationDate>2025-12-07T09:53:20.1769468+05:30</NotificationDate>
    <NotificationOfID>sample string 3</NotificationOfID>
    <NotificationOfUserID>sample string 2</NotificationOfUserID>
    <NotificationTitle>sample string 4</NotificationTitle>
    <RedirectionLink>sample string 6</RedirectionLink>
  </utblNotification>
  <utblNotification>
    <IsInAppRedirection>true</IsInAppRedirection>
    <IsRead>true</IsRead>
    <NotifcationID>1</NotifcationID>
    <NotificationBody>sample string 5</NotificationBody>
    <NotificationDate>2025-12-07T09:53:20.1769468+05:30</NotificationDate>
    <NotificationOfID>sample string 3</NotificationOfID>
    <NotificationOfUserID>sample string 2</NotificationOfUserID>
    <NotificationTitle>sample string 4</NotificationTitle>
    <RedirectionLink>sample string 6</RedirectionLink>
  </utblNotification>
</ArrayOfutblNotification>