The common functions list represents the commands that Galooli currently supports. The followings are the commands and their explanations:
...
The user can send a text message to a number (or a list of them separated with ‘,’ or ‘;’, without spaces).
Sending SMS through My Automations will be done through the service provider defined for each organization.
Code Block | ||
---|---|---|
| ||
await Galooli.SendSMS(/*Numbers to send to seperated with ';' or ','*/, /*Message to send*/); |
...
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); |
...