The Automation Editor section allows the user to create and edit automation scripts.
...
Name -The name of the automation can be changed if necessary.
Assets - The assets on which the automation will be activated can be changed. It is possible to select up to 500 characters in the Asset field.
Timing - If you need to use a schedule plan other than what is offered by the system, you can use one of the many tools available online toconvert CRON expressions to readable text format.
Active - Activate the automation if needed.
...
State variables that are "global" may be used in multiple runs of the same script. In order to accomplish this, save a variable as the "Set State" function as follows:
Code Block | ||
---|---|---|
| ||
bool success = await Galooli.SetState(“SomeKey”, “SomeValue”, isGlobal: true); |
...