Three Trigger Flavors
One Engine, Three Ways In
Most automation platforms treat triggers as an afterthought — a webhook node or a brittle file-check on a schedule. InTouch treats triggers the same way it treats schedules: as governed, auditable objects with owners, groups, rights, and alerts.
F
File Triggers
Point a trigger at an absolute file path. When the file's modification time changes, the trigger fires. Use it for arrival signals, export readiness flags, upstream system drops — any case where a known file is the source of truth.
Published to the job: triggerFile, triggerEvent, the changed timestamp.
D
Folder Triggers
Watch a directory. The trigger fires on any change in the folder — new files, deleted files, modified files. The job receives lists of what changed, so it can process only the new arrivals instead of scanning the whole directory on every run.
Published to the job: newFiles, deletedFiles, modifiedFiles, changedFiles, counts for each.
AI
AI Triggers
The AI assistant evaluates a condition you write in natural language — on a schedule — and fires when the answer is "yes." Great for fuzzy business signals: "alert me if yesterday's error rate is unusual," "run the report only if month-end close completed."
Evaluated by: any of 9 configured AI providers — Anthropic, OpenAI, Google Gemini, Mistral, Groq, DeepSeek, xAI, Hugging Face, or Ollama.