POST api/Values/NotificationDelete
Request Information
URI Parameters
None.
Body Parameters
Notification_Master_Property| Name | Description | Type | Additional information |
|---|---|---|---|
| Notification_ID | integer |
None. |
|
| Notification_Title | string |
None. |
|
| Notification_Body | string |
None. |
|
| Notification_Date | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Notification_ID": 1,
"Notification_Title": "sample string 2",
"Notification_Body": "sample string 3",
"Notification_Date": "2026-05-03T09:11:19.0320712-07:00"
}
application/xml, text/xml
Sample:
<Notification_Master_Property xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.PropertyClasses.Master"> <Notification_Body>sample string 3</Notification_Body> <Notification_Date>2026-05-03T09:11:19.0320712-07:00</Notification_Date> <Notification_ID>1</Notification_ID> <Notification_Title>sample string 2</Notification_Title> </Notification_Master_Property>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Notification_Master_Response| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| msg | string |
None. |
|
| data | Collection of Notification_Master_Property |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"msg": "sample string 2",
"data": [
{
"Notification_ID": 1,
"Notification_Title": "sample string 2",
"Notification_Body": "sample string 3",
"Notification_Date": "2026-05-03T09:11:19.0476939-07:00"
},
{
"Notification_ID": 1,
"Notification_Title": "sample string 2",
"Notification_Body": "sample string 3",
"Notification_Date": "2026-05-03T09:11:19.0476939-07:00"
}
]
}
application/xml, text/xml
Sample:
<Notification_Master_Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.FunctionClasses.Response">
<data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BLL.PropertyClasses.Master">
<d2p1:Notification_Master_Property>
<d2p1:Notification_Body>sample string 3</d2p1:Notification_Body>
<d2p1:Notification_Date>2026-05-03T09:11:19.0476939-07:00</d2p1:Notification_Date>
<d2p1:Notification_ID>1</d2p1:Notification_ID>
<d2p1:Notification_Title>sample string 2</d2p1:Notification_Title>
</d2p1:Notification_Master_Property>
<d2p1:Notification_Master_Property>
<d2p1:Notification_Body>sample string 3</d2p1:Notification_Body>
<d2p1:Notification_Date>2026-05-03T09:11:19.0476939-07:00</d2p1:Notification_Date>
<d2p1:Notification_ID>1</d2p1:Notification_ID>
<d2p1:Notification_Title>sample string 2</d2p1:Notification_Title>
</d2p1:Notification_Master_Property>
</data>
<msg>sample string 2</msg>
<success>true</success>
</Notification_Master_Response>