Overview
This node, named NimmaRequest, supports multiple operations including starting a workflow. Specifically, the 'Start Workflow' operation allows users to trigger another workflow by specifying its slug or ID and optionally passing a JSON payload. This is useful for automating processes where one workflow needs to initiate another, such as chaining workflows for complex automation scenarios.
Use Case Examples
- Trigger a customer onboarding workflow by starting it from a main workflow and passing customer data as payload.
- Start a data processing workflow with specific parameters dynamically provided as JSON.
Properties
| Name | Meaning |
|---|---|
| Workflow Slug/ID | The identifier or slug of the workflow to start. |
| Payload (JSON) | A JSON object to pass as payload to the started workflow. |
Output
JSON
workflowExecutionId- The ID of the started workflow execution.status- The status of the workflow start request.result- The result or response from starting the workflow.
Dependencies
- Requires access to the workflow system to start workflows, typically via an API or internal n8n workflow execution context.
Troubleshooting
- Error 'Onbekende operatie' indicates an unknown operation was specified; ensure the operation parameter is set to 'startWorkflow' for this use case.
- If the workflow ID is invalid or the workflow does not exist, the node will fail to start the workflow.
- Malformed JSON payload can cause errors; ensure the payload is valid JSON.