The trigger action "set-message" creates a message notification and can include a message title and a body. Info |
---|
Can It can be set as info, warning, or error and set to auto-close after a specified period or require user acknowledgementacknowledgment. | ❗️ indicates a mandatory parameter - the set-message "type" parameter value and the
❗️ Mandatory parameterstype The "type" parameter value must be included. body The "body" parameter value are requiredmust be included.
Trigger example Code Block |
---|
"triggers":
[
{"event": "on-change-state",
"conditions":
[
{"state":"Expired"}
],
"actions":
[
{"action": "set-message",
"type": "info",
"title": "Stale content",
"body": "Content may be out of date",
"tags": "state",
"mode": "autoClose"}
]}
] |
Info |
---|
If When adding the JSON trigger using using the workflow builder visual editor, there is no need to include the opening "triggers": JSON markup notation, ; it is added automatically by the workflow builder. |
The above trigger listens for a state change event to the Expired state and displays an on-screen message notification on the change of state.oImage Removed Image AddedIf the "set-messsage" action parameter is "type":"warning" the , the displayed notification is:oImage Removed Image AddedIf the "set-messsage" action parameter is "type":"error" the , the displayed notification is:oImage Removed Image Added Tip |
---|
All messages can be removed using the "clean-messages" trigger action. |
Info |
---|
Custom email notifications can be sent using the "send-email" trigger action. |
|