POST api/Notification/InsertNotificationDetail
Request Information
URI Parameters
None.
Body Parameters
NotificationEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| PK_Notification_Id | integer |
None. |
|
| FK_Org_Id | integer |
None. |
|
| Title | string |
Required |
|
| Notification_Date | date |
Required |
|
| Description | string |
None. |
|
| Status | integer |
None. |
|
| Is_Sent | boolean |
None. |
|
| Created_Date | date |
None. |
|
| Created_By | string |
None. |
|
| Modified_Date | date |
None. |
|
| Modified_By | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"pK_Notification_Id": 1,
"fK_Org_Id": 2,
"title": "sample string 3",
"notification_Date": "2025-12-24T09:48:16.6579545+05:30",
"description": "sample string 4",
"status": 5,
"is_Sent": true,
"created_Date": "2025-12-24T09:48:16.6579545+05:30",
"created_By": "sample string 7",
"modified_Date": "2025-12-24T09:48:16.6579545+05:30",
"modified_By": "sample string 8"
}
text/xml
Sample:
<NotificationEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities"> <Created_By>sample string 7</Created_By> <Created_Date>2025-12-24T09:48:16.6579545+05:30</Created_Date> <Description>sample string 4</Description> <FK_Org_Id>2</FK_Org_Id> <Is_Sent>true</Is_Sent> <Modified_By>sample string 8</Modified_By> <Modified_Date>2025-12-24T09:48:16.6579545+05:30</Modified_Date> <Notification_Date>2025-12-24T09:48:16.6579545+05:30</Notification_Date> <PK_Notification_Id>1</PK_Notification_Id> <Status>5</Status> <Title>sample string 3</Title> </NotificationEntity>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |