POST api/Notifications/Update
Request Information
URI Parameters
None.
Body Parameters
NotificationsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| User_Id | integer |
None. |
|
| Notification_Type | string |
None. |
|
| Message | string |
None. |
|
| Sent_Date | date |
None. |
|
| Is_Read | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"User_Id": 2,
"Notification_Type": "sample string 3",
"Message": "sample string 4",
"Sent_Date": "2025-12-11T04:33:43.6434385+05:30",
"Is_Read": true
}
application/xml, text/xml
Sample:
<NotificationsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PropertyRMS.Model"> <Id>1</Id> <Is_Read>true</Is_Read> <Message>sample string 4</Message> <Notification_Type>sample string 3</Notification_Type> <Sent_Date>2025-12-11T04:33:43.6434385+05:30</Sent_Date> <User_Id>2</User_Id> </NotificationsModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.