DELETE api/notifications/{notificationId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| notificationId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBETInternalWebServices.Controllers.Notification| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BETInternalWebServices.Controllers.Notification |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"id": 1,
"title": "sample string 2",
"message": "sample string 3",
"imageURL": "sample string 4",
"externalURL": "sample string 5",
"created": "2025-12-15T11:54:27.6746844+02:00",
"processed": "2025-12-15T11:54:27.6746844+02:00"
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfNotification xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<Id>1</Id>
<Title>sample string 2</Title>
<Message>sample string 3</Message>
<ImageURL>sample string 4</ImageURL>
<ExternalURL>sample string 5</ExternalURL>
<Created>2025-12-15T11:54:27.6746844+02:00</Created>
<Processed>2025-12-15T11:54:27.6746844+02:00</Processed>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfNotification>