Type of Data

This section explains how to manage data used within the scripts that power your automation process.

Global Data

When you store data in the system, that data becomes accessible across all parts of your script. This means you can reuse the same data in multiple commands without needing to rewrite or duplicate values.


Single Data Example

For instance, if several parts of your script use the same URL, such as:

https://www.etsy.com/

Instead of updating each command manually when the domain changes, you can define the URL once under Global Data This value will automatically update across all commands where it's used.

You can define it using a simple JSON format, like this:

{
  "url": "https://www.etsy.com/"
}

Last updated