POST api/Notification/AddNewNotification

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
notification
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "notif": "sample string 1",
  "yes_no": "sample string 2",
  "roleid": 3,
  "status": "sample string 4",
  "fromDate": "2025-01-11T03:25:10.1992409+05:30",
  "toDate": "2025-01-11T03:25:10.1992409+05:30"
}

application/xml, text/xml

Sample:
<notificationParamsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KcclModel.dto">
  <fromDate>2025-01-11T03:25:10.1992409+05:30</fromDate>
  <notif>sample string 1</notif>
  <roleid>3</roleid>
  <status>sample string 4</status>
  <toDate>2025-01-11T03:25:10.1992409+05:30</toDate>
  <yes_no>sample string 2</yes_no>
</notificationParamsDto>

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 'notificationParamsDto'.