EEA: Init Trigger Node
The EEA: Init Trigger will trigger a workflow whenever the eea_init
function is called within the Embedded Edge Agent.
Node Properties
This node does not require any configuration. It will automatically fire whenever eea_init
function is called within the Embedded Edge Agent is called on your Embedded Device.
Payload
The payload will have an empty object on the standard data
field, since there is no useful data to report other than the fact that eea_init
function is called within the Embedded Edge Agent was called. In the general case, an EEA: Init workflow payload will look like the following:
{
"data": {},
"deploymentId": <ID of the deployment>,
"deviceId": <ID of the device>,
"flowId": <ID of the current workflow>,
"flowName": <name of the current workflow>,
"globals": <object of workflow globals>,
"flowVersion": <name of the flow version>,
"isConnectedToWEGnology": <true|false>,
"time": <time of the message>,
"triggerId": "onBoot",
"triggerType": "onBoot"
}