List notification destinations
/notification-destination
Requires `notification:view`.
Query Parameters
Case-insensitive substring match on the destination's name. LIKE wildcards are matched literally. Max 200 characters.
Response Body
Non-secret settings. to/cc/bcc apply to email; ignored for slack.
4 properties
Fixed catalog of org events this destination is subscribed to.
connection.needs_reauthconnection.disconnectedmember.joinedmember.removedmember.roles_updatedinvite.sentinvite.revokedrole.createdrole.updatedrole.deletedrestriction.updatedconnector.createdconnector.destination_changedapi_token.createdapi_token.revokedsso_connection.createdsso_connection.updatedmfa.disabledteam.member_addedteam.member_removed+ 8 more
Notification destination id (onfd_…).
Paused destinations keep their config but forward nothing.
okfailednull
Immutable after creation.
slackemail
curl -X GET 'https://api.elaichi.ai/notification-destination' \
-H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
-H 'Content-Type: application/json'const response = await fetch('https://api.elaichi.ai/notification-destination', {
method: 'GET',
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"
headers = {
"Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
"Content-Type": "application/json",
}
response = requests.get(url, headers=headers)
print(response.json())