Notify
GET/api/config/notify-emails
curl -s -X GET "https://alphieui.com/api/config/notify-emails" \
-H "Authorization: Bearer $TOKEN"
POST/api/config/notify-emails
curl -s -X POST "https://alphieui.com/api/config/notify-emails" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
DELETE/api/config/notify-emails/{email_id}
curl -s -X DELETE "https://alphieui.com/api/config/notify-emails/{email_id}" \
-H "Authorization: Bearer $TOKEN"
PUT/api/config/notify-emails/{email_id}
curl -s -X PUT "https://alphieui.com/api/config/notify-emails/{email_id}" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
POST/api/config/notify-emails/{email_id}/test
curl -s -X POST "https://alphieui.com/api/config/notify-emails/{email_id}/test" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
GET/api/config/notify-rules
curl -s -X GET "https://alphieui.com/api/config/notify-rules" \
-H "Authorization: Bearer $TOKEN"
POST/api/config/notify-rules
curl -s -X POST "https://alphieui.com/api/config/notify-rules" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
DELETE/api/config/notify-rules/{rule_id}
curl -s -X DELETE "https://alphieui.com/api/config/notify-rules/{rule_id}" \
-H "Authorization: Bearer $TOKEN"
PUT/api/config/notify-rules/{rule_id}
curl -s -X PUT "https://alphieui.com/api/config/notify-rules/{rule_id}" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
POST/api/config/notify-rules/{rule_id}/test
curl -s -X POST "https://alphieui.com/api/config/notify-rules/{rule_id}/test" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
Notes
- All endpoints require authentication unless noted otherwise.
- Most write operations accept and return JSON.
- Timestamps are returned in server-local time strings for UI convenience.
- Long-running operations (runs/pipelines) expose
/file-logand/file-log/tailfor streaming logs.