Delete a notification destination
DELETE
/notification-destination/{id}
Irreversible, including the stored webhook credential — forwarding stops at once. To pause instead, PATCH `is_active: false`. Requires `notification:manage`.
Path Parameters
idstring
required·
Notification destination id (onfd_…).
Response Body
successboolean
curl -X DELETE 'https://api.elaichi.ai/notification-destination/<id>' \
-H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
-H 'Content-Type: application/json'const response = await fetch('https://api.elaichi.ai/notification-destination/<id>', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer ' + process.env.ELAICHI_API_TOKEN,
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);import os
import requests
url = "https://api.elaichi.ai/notification-destination/<id>"
headers = {
"Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
"Content-Type": "application/json",
}
response = requests.delete(url, headers=headers)
print(response.json())