mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2026-03-28 18:08:41 +07:00
12 lines
176 B
Markdown
12 lines
176 B
Markdown
# $execution
|
|
|
|
## $execution.id
|
|
|
|
Contains the unique ID of the current workflow execution.
|
|
|
|
```typescript
|
|
const executionId = $execution.id;
|
|
|
|
return [{json:{executionId}}];
|
|
```
|