POST api/GeneralNotification/AddNotification
Request Information
URI Parameters
None.
Body Parameters
utblNotification| Name | Description | Type | Additional 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. |
Request 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:25.9605623+05:30"
}
application/xml, text/xml
Sample:
<utblNotification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.Models"> <IsInAppRedirection>true</IsInAppRedirection> <IsRead>true</IsRead> <NotifcationID>1</NotifcationID> <NotificationBody>sample string 5</NotificationBody> <NotificationDate>2025-12-07T09:53:25.9605623+05:30</NotificationDate> <NotificationOfID>sample string 3</NotificationOfID> <NotificationOfUserID>sample string 2</NotificationOfUserID> <NotificationTitle>sample string 4</NotificationTitle> <RedirectionLink>sample string 6</RedirectionLink> </utblNotification>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>