Demarrage
Entry point for any workflow. Receives initial data passed when the workflow is launched (manually, via API, or from another workflow).
Parameters
| Parameter | Type | Required | Variable | Description |
|---|---|---|---|---|
description | text | No | No | Workflow description. Displayed in the start block configuration panel. |
inputSchema | object | No | No | JSON schema describing the expected input parameters for the workflow. |
Output
Output variable : startData
{
"data": "..."
}
Example
Start a workflow with input data.
Input :
{"clientName": "Acme Corp", "amount": 15000}
Output :
{"data": {"clientName": "Acme Corp", "amount": 15000}}
Tip
Input data is accessible via {{startData.data}}. If the workflow is launched without data, startData.data will be an empty object {}.