A server for programmatically creating and managing n8n workflows with a REST API interface, supporting workflow creation, validation, and export.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
List all workflows from your n8n instance. Parameters: None.
Retrieve detailed information about a specific workflow. Parameters: `id`: Workflow ID (string).
Create a new workflow with nodes and connections. Parameters: `workflow`: Workflow object.
Manually execute a workflow. Parameters: `id`: Workflow ID (string).
Update an existing workflow's configuration. Parameters: `id`: Workflow ID, `workflow`: Updated workflow object.
Activate a workflow to enable automatic execution. Parameters: `id`: Workflow ID (string).
Deactivate a workflow to stop automatic execution. Parameters: `id`: Workflow ID (string).
Permanently delete a workflow. Parameters: `id`: Workflow ID (string).
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`: 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`: Tag name.
Generate comprehensive security audit report. Parameters: `additionalOptions`: Audit configuration.