RSS Mini Notifier

Tags

Simple list of notifications for various events


Simple API to allow POST /notify for a new entry


Simple subscribe to GET /notify.atom































IconTimestampTitleLink
Ayyyy-mm-dd hh:mm:ssApp A Notification
Ayyyy-mm-dd hh:mm:ssApp A Notification
yyyy-mm-dd hh:mm:ssApp B Notification

Rows can be set a color/prioirty and links to extra.


Payload example from my growl and mqtt post


{
"title": "Application or message title",
"body": "notification body",
"priority": 0, // Optional: Some kind of priority -2, -1, 0, 1, 2
"icon": "http://path or base64 data?", // Optional
"sticky": True, // Wait to be closed or not
"id": "uuid or other id", // Used to replace existing notifications
}

Payload example from Home Assistant


{
"title": "title",
"message": "body",
"data": {
"url": "http://optional.example.com",
"group": "optional-group",
"subtitle": "optional-subtitle"
}
}

References