Skip to main content

Demarrage

Entry point for any workflow. Receives initial data passed when the workflow is launched (manually, via API, or from another workflow).

Parameters

ParameterTypeRequiredVariableDescription
descriptiontextNoNoWorkflow description. Displayed in the start block configuration panel.
inputSchemaobjectNoNoJSON 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 {}.