Accessing Input Variables

Inputs are accessed through the input object. For complex scenarios, you can:

Inputs passed to your script are accessible as an input object. If you're passing multiple variables, it’s recommended to structure them as a JSON object for clarity and ease of use.
Input Field
Input Field
FieldValue
InputJohn
JS codereturn input + ' Doe';
Output{ output: 'John Doe' }