DELETE api/NotificationMessages/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
NotificationMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Title | string |
None. |
|
| Message | string |
None. |
|
| Date | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Title": "sample string 2",
"Message": "sample string 3",
"Date": "2025-11-02T11:04:00.6004115+00:00"
}
application/xml, text/xml
Sample:
<NotificationMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PetraAPI.Models"> <Date>2025-11-02T11:04:00.6004115+00:00</Date> <Id>1</Id> <Message>sample string 3</Message> <Title>sample string 2</Title> </NotificationMessage>