Files
n8n-docs/docs/code-examples/methods-variables-examples/execution.md
Deborah Barnard 3d6c76b1dd edits to ref
2022-09-08 18:52:12 +01:00

450 B

$execution

$execution.id

Contains the unique ID of the current workflow execution.

const executionId = $execution.id;

return [{json:{executionId}}];

$execution.resumeUrl

The webhook URL to call to resume a waiting workflow.

See the Wait > On webhook call documentation to learn more.