POST api/NotificationAPI/CreateNotification

Request Information

URI Parameters

None.

Body Parameters

tbl_UserNotificationMaster
NameDescriptionTypeAdditional information
ID

integer

None.

Title

string

None.

Message

string

None.

CreatedAt

date

None.

IsRead

boolean

None.

UserId

integer

None.

CreatedDateTime

date

None.

ModifyDateTime

date

None.

Priority

string

None.

Type

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Title": "sample string 2",
  "Message": "sample string 3",
  "CreatedAt": "2025-12-10T18:18:30.80125+05:30",
  "IsRead": true,
  "UserId": 1,
  "CreatedDateTime": "2025-12-10T18:18:30.8022464+05:30",
  "ModifyDateTime": "2025-12-10T18:18:30.8022464+05:30",
  "Priority": "sample string 4",
  "Type": "sample string 5"
}

application/xml, text/xml

Sample:
<tbl_UserNotificationMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BONAPI.DBConnection">
  <CreatedAt>2025-12-10T18:18:30.80125+05:30</CreatedAt>
  <CreatedDateTime>2025-12-10T18:18:30.8022464+05:30</CreatedDateTime>
  <ID>1</ID>
  <IsRead>true</IsRead>
  <Message>sample string 3</Message>
  <ModifyDateTime>2025-12-10T18:18:30.8022464+05:30</ModifyDateTime>
  <Priority>sample string 4</Priority>
  <Title>sample string 2</Title>
  <Type>sample string 5</Type>
  <UserId>1</UserId>
</tbl_UserNotificationMaster>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.