mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2026-03-29 02:18:42 +07:00
18 lines
450 B
Markdown
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.
|