Delete Notificant

Delete Notificant

Delete a specific notification target

Request
URI
DELETE
https://{api_host}/api/v2/notificant/{id}
COPY
Path Parameters
string
id
Required

id

Query Parameters
boolean
unlink
Optional
Constraints: default: false

If set to true, explicitly deletes a notification target even if it’s in use by alerts.
Before deletion, the target is removed from the alert's target list.


Authentication
This operation uses the following authentication methods.
Responses
200

successful operation

Returns ResponseContainerNotificant of type(s) application/json
{
    "status": {
        "result": "string",
        "message": "string",
        "code": 0
    },
    "response": {
        "method": "string",
        "id": "string",
        "contentType": "string",
        "description": "string",
        "createdEpochMillis": 0,
        "updatedEpochMillis": 0,
        "title": "string",
        "customerId": "string",
        "triggers": [
            "string"
        ],
        "template": "string",
        "recipient": "string",
        "customHttpHeaders": {
            "customHttpHeaders": "string"
        },
        "emailSubject": "string",
        "isHtmlContent": false,
        "routes": [
            {
                "method": "string",
                "target": "string",
                "filter": "string"
            }
        ],
        "creatorId": "string",
        "updaterId": "string"
    }
}
object
status
Required

status

object
response
Optional

Wavefront notificant entity


Code Samples
COPY
                    curl -X DELETE -H 'Authorization: <value>' https://{api_host}/api/v2/notificant/{id}