POST api/Notifications/Update

Request Information

URI Parameters

None.

Body Parameters

NotificationsModel
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'NotificationsModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.