A server for programmatically creating and managing n8n workflows with a REST API interface, supporting workflow creation, validation, and export.
暂无评论. 成为第一个评论的人!
登录以参与讨论
List all workflows from your n8n instance. Parameters: None
Retrieve detailed information about a specific workflow. Parameters: id (string): Workflow ID
Create a new workflow with nodes and connections. Parameters: workflow (Workflow object)
Manually execute a workflow. Parameters: id (string): Workflow ID
Update an existing workflow's configuration. Parameters: id (string): Workflow ID, workflow (Updated workflow object)
Activate a workflow to enable automatic execution. Parameters: id (string): Workflow ID
Deactivate a workflow to stop automatic execution. Parameters: id (string): Workflow ID
Permanently delete a workflow. Parameters: id (string): Workflow ID
Create a new workflow and immediately activate it. Parameters: workflow (Workflow object)
List workflow executions with filtering and pagination. Parameters: includeData, status, workflowId, projectId, limit, cursor
Get detailed information about a specific execution. Parameters: id (Execution ID), includeData (boolean): Include detailed data
Delete a workflow execution record. Parameters: id (Execution ID)
List all workflow tags with pagination. Parameters: limit, cursor
Create a new workflow tag for organization. Parameters: name (string): Tag name
Generate comprehensive security audit report. Parameters: additionalOptions (Audit configuration)