get_user_list
Collect a comma-separated or newline-separated list of items from user input, using a configurable delimiter.
Instructions
Capture a list of items from a textarea and split on a delimiter or newline.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input_description | Yes | Write a clear prompt to guide users on what information is required. For example, 'Please enter your email address' or 'Select your preferred contact method.' | |
| delimiter | No | This is the character that separates the list items. For example, use a comma (,) for 'item1,item2,item3'. Leave blank to split on newlines. | |
| required | No | Mark this checkbox if this input is mandatory. For example, enable it if a response is essential to proceed in the workflow. | |
| input_name | Yes | Assign a unique variable name for the input value, such as 'user_email' or 'preferred_contact', which you can reference later in the workflow. | user_input |