Overview
Notifiers deliver messages from automations or thenotify tool. They are configured separately from automation creation.
Supported types include:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Configure and test notification destinations for automations and the notify tool.
notify tool. They are configured separately from automation creation.
Supported types include:
| Type | Typical fields |
|---|---|
telegram | user_id |
email | from_account, to_address |
slack | channel |
bash | command |
curl http://localhost:6877/notifiers \
-H "Authorization: Bearer $API_KEY"
curl http://localhost:6877/notifiers/configs \
-H "Authorization: Bearer $API_KEY"
curl http://localhost:6877/notifiers/types \
-H "Authorization: Bearer $API_KEY"
curl -X POST http://localhost:6877/notifiers/configs \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"telegram-me","type":"telegram","config":{"user_id":"123456"}}'
curl -X POST http://localhost:6877/notifiers/configs \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"email-me","type":"email","config":{"from_account":"me@example.com","to_address":"me@example.com"}}'
curl -X POST http://localhost:6877/notifiers/configs \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"slack-alerts","type":"slack","config":{"channel":"#alerts"}}'
curl -X POST http://localhost:6877/notifiers/configs \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"local-notify","type":"bash","config":{"command":"osascript -e '\''display notification $ARDEN_BODY with title $ARDEN_SUBJECT'\''"}}'
curl -X PUT http://localhost:6877/notifiers/configs/telegram-me \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{"type":"telegram","config":{"user_id":"123456"}}'
curl -X POST http://localhost:6877/notifiers/configs/telegram-me/test \
-H "Authorization: Bearer $API_KEY"
curl -X DELETE http://localhost:6877/notifiers/configs/telegram-me \
-H "Authorization: Bearer $API_KEY"