Skip to main content

prompt_user

Utility

Pauses execution and prompts the user for input or confirmation.

Parameters

Parameter Type Required Default Description
reason string Yes Prompt message shown to the user
fields array Yes Array of field objects with name and type
output_variable string No Variable to store user response

Usage Example

RTILA X PROJECT JSON

    {
  "command": "prompt_user",
  "params": {
    "reason": "Enter your target region",
    "fields": [
      {
        "name": "region",
        "type": "text"
      }
    ],
    "output_variable": "user_response"
  }
}
  

Related Learning Articles

Was this helpful?