6. trigger_action_flow — Trigger Action Flows
Mode: Custom only · Category: Other
Connects the Process Copilot to an Action Flow. Each instance requires a unique_id. The Process Copilot creator fully defines which action flow to call and what inputs it expects.
- id: trigger_action_flow unique_id: run_cleanup flow_key: my-package.cleanup-scenario flow_display_name: Run Data Cleanup
- id: trigger_action_flow
unique_id: send_email
description: Sends an email to a recipient given an email address and body.
flow_key: my-package.email-scenario
flow_display_name: Send Email Flow
disable_confirm: false
flow_input_schema:
type: object
required:
- email
- body
properties:
email:
type: string
description: Email address to send to.
display_name: Email Address
body:
type: string
description: The body of the email.
display_name: Email Body- id: trigger_action_flow
unique_id: send_email
flow_key: my-package.email-scenario
flow_display_name: Send Email
flow_input_schema:
type: object
required: [email, body]
properties:
email:
type: string
description: Recipient email address.
body:
type: string
description: Email body text.
- id: trigger_action_flow
unique_id: create_ticket
flow_key: my-package.ticket-scenario
flow_display_name: Create Support Ticket
disable_confirm: true
flow_input_schema:
type: object
required: [title, priority]
properties:
title:
type: string
description: Ticket title.
priority:
type: string
description: Priority level (low, medium, high).![]() |
Field | Type | Description |
|---|---|---|
| string | Required — unique identifier for this action flow instance. |
| string | Required — name shown to the user in the confirmation card. |
| string | Action flow key ( |
| object | JSON Schema defining inputs. Each property becomes an LLM argument. |
| bool | Skip user confirmation before execution (default: requires confirmation). |
| string | Deprecated — legacy webhook node ID. |
| string | Deprecated — legacy webhook hook ID. |
