Pauses workflow execution until the user sends a message. Optionally configure a timeout to automatically continue if no response is received.Documentation Index
Fetch the complete documentation index at: https://docs.kapso.ai/llms.txt
Use this file to discover all available pages before exploring further.
Configuration
id: Unique node identifiersave_response_to: Variable name to store user response (optional)has_timeout: Enable automatic timeout (optional)timeout_seconds: Timeout duration in seconds, between 10 and 604800 (7 days)
Workflow library example
Storing responses
User responses are automatically saved to{{last_user_input}}.
Use save_response_to to store the response in a custom variable. Response content is saved as text.
Timeout behavior
When timeout is enabled:- Workflow automatically continues after the specified duration if no user response is received
{{system.last_resume.reason}}is set to"timeout"(vs"user_input"for normal responses)- No value is written to
{{last_user_input}}or custom response variables on timeout - Use a Decide node after the wait to branch based on
{{system.last_resume.reason}}

