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

18 lines
450 B
Markdown

# `$execution`
## `$execution.id`
Contains the unique ID of the current workflow execution.
```typescript
const executionId = $execution.id;
return [{json:{executionId}}];
```
## `$execution.resumeUrl`
The webhook URL to call to resume a [waiting](/integrations/builtin/core-nodes/n8n-nodes-base.wait/) workflow.
See the [Wait > On webhook call](/integrations/builtin/core-nodes/n8n-nodes-base.wait/#webhook-call) documentation to learn more.