mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2026-04-01 11:58:44 +07:00
592 B
592 B
Custom variables
--8<-- "_snippets/code-examples/variables-list.md"
Examples
$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
$resumeWebhookUrl
The webhook URL to call to resume a waiting workflow.
See the Wait > On webhook call documentation to learn more.