POST api/Notification/SaveNotifications
Request Information
URI Parameters
None.
Body Parameters
NotificationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| NotificationID | integer |
None. |
|
| NotificationName | string |
None. |
|
| FormID | integer |
None. |
|
| FormFieldID | integer |
None. |
|
| ToUserID | integer |
None. |
|
| FromUserId | integer |
None. |
|
| Inactive | boolean |
None. |
|
| CreatedOn | date |
None. |
|
| LastModifiedon | date |
None. |
|
| LastModifiedBy | integer |
None. |
|
| ClientID | integer |
None. |
|
| NotificationDate | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"NotificationID": 1,
"NotificationName": "sample string 2",
"FormID": 3,
"FormFieldID": 4,
"ToUserID": 5,
"FromUserId": 6,
"Inactive": true,
"CreatedOn": "2026-04-17T13:01:10.1150501+00:00",
"LastModifiedon": "2026-04-17T13:01:10.1150501+00:00",
"LastModifiedBy": 10,
"ClientID": 11,
"NotificationDate": "sample string 12"
}
application/xml, text/xml
Sample:
<NotificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSI.Cx360.WebAPI.Models.Notification"> <ClientID>11</ClientID> <CreatedOn>2026-04-17T13:01:10.1150501+00:00</CreatedOn> <FormFieldID>4</FormFieldID> <FormID>3</FormID> <FromUserId>6</FromUserId> <Inactive>true</Inactive> <LastModifiedBy>10</LastModifiedBy> <LastModifiedon>2026-04-17T13:01:10.1150501+00:00</LastModifiedon> <NotificationDate>sample string 12</NotificationDate> <NotificationID>1</NotificationID> <NotificationName>sample string 2</NotificationName> <ToUserID>5</ToUserID> </NotificationModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />