| globalCustomVar (varKey* ) | Gets the value (string representation) of a global custom variable. Returns an API error (DOES_NOT_EXIST) if no value was previously set. |
| globalCustomVars | Gets all the global custom variables (key/value pairs, the value is the string representation). |
| globalVar (varKey* ) | Gets the value of the global variable with the given key. Returns an API error (DOES_NOT_EXIST) if no value was previously set. |
| globalVars | Gets all the global variables (key/value pairs). |
| listEngines | Lists the script engines available |
| listScripts | Lists the scripts available, with its engine, name, description, type and error state. |
| listTypes | Lists the script types available. |
| scriptCustomVar (scriptName* varKey* ) | Gets the value (string representation) of a custom variable. Returns an API error (DOES_NOT_EXIST) if no script with the given name exists or if no value was previously set. |
| scriptCustomVars (scriptName* ) | Gets all the custom variables (key/value pairs, the value is the string representation) of a script. Returns an API error (DOES_NOT_EXIST) if no script with the given name exists. |
| scriptVar (scriptName* varKey* ) | Gets the value of the variable with the given key for the given script. Returns an API error (DOES_NOT_EXIST) if no script with the given name exists or if no value was previously set. |
| scriptVars (scriptName* ) | Gets all the variables (key/value pairs) of the given script. Returns an API error (DOES_NOT_EXIST) if no script with the given name exists. |