n8n-docs/docs/code-examples/expressions/methods-variables/workflow.md
2022-08-31 13:31:46 +01:00

250 B

$workflow

Gives information about the current workflow.

// Boolean. Whether the workflow is active (true) or not (false)
{{$workflow.active}}
// Number. The workflow ID.
{{$workflow.id}}
// String. The workflow name.
{{$workflow.name}}