node-red-contrib-gotify-notification 1.1.4
A node-red module for sending and subscribing to notifications from Gotify
Node-RED Gotify Integration
A comprehensive module for Node-RED facilitating the sending and receiving of notifications via Gotify.
Instalation
In order to install the module run
npm install node-red-contrib-gotify-notification
Publish Node Configuration
Configuration:
- Override: Determines if the
title
,message
,priority
, andextras
properties from incoming messages should be overwritten. - Title: Specifies the notification title.
- Message: The main text of the notification.
- Priority: Sets the notification's priority level.
- Extras: Additional data for the notification, formatted as JSON.
Workflow
The publish node can be integrated at any point in your workflow.
Inputs
The node accepts inputs from the msg.
object. Ensure override
is disabled to utilize this feature.
Example msg
Object
{
"message": "Example Message",
"title": "Example Title",
"priority": 5,
"extras": {
"my_extra_parameter": "Parameter"
}
}
Outputs
After sending a notification, the node outputs the notification details as a JSON object in msg.gotify
.
Subscribe Node Configuration
Configuration:
- Server: The target server for subscription.
Workflow
This node can be placed at any suitable point in your workflow.
Outputs
Upon receiving notifications, the node outputs the data as a JSON object in msg.
Example msg
Object for a Notification
{
"id": 1,
"appid": 1,
"message": "Some message",
"title": "Some title",
"priority": 0,
"date": "2025-01-23T18:16:08.991165343Z"
}