All Collections
Automation
Functions
Function GetGlobalParam()
Function GetGlobalParam()

Retrieve data from a global persistent storage. Use it to pass it between execution sessions.

Sergey Shurygin avatar
Written by Sergey Shurygin
Updated over a week ago

Use GetGlobalParam(name) to read the name key from the global persistent variable space previously saved SetGlobalParam().

How to use

Use the function in the following way:

SetGlobalParam(name, value)

Input

name: the name of the variable (key) to retrive.

Output

The value of the name key, or null if the key does not exist.

Example

GetGlobalParam("id")

See also

Did this answer your question?