Search K
Appearance
Appearance
The Toast Notification node sends a toast notification to the MinuteView interface with a configurable header, message, and success status. This allows workflows to display notifications to users during automation execution.
Use this node to notify users of workflow events, statuses, completions, errors, or informational messages directly in the MinuteView interface as toast notifications.
Input | Type | Description |
---|---|---|
Header | Text | The title or header of the toast notification. Supports placeholders for dynamic data injection. |
Message | Text | The body text of the notification. Supports placeholders for dynamic data injection. |
Success | Boolean (string) | Determines the type of notification displayed. Use "true" for success notifications and any other value for standard notifications. |
This node does not produce specific output variables. It sends the notification and returns a success status upon completion.
Validation:
Placeholder Replacement:
_fs.PropReplacePlaceholders
with current task data.Notification Sending:
SendToastNotification
to send the notification to the MinuteView server with: baseUrl
: current server URL.header
: processed header text.message
: processed message text.success
: boolean parsed from input.Logging:
Cleanup:
Header
, Message
, and Success
keys from task data after sending the notification.Error Handling:
⚠️ Important: