Files
n8n-docs/docs/code-examples/javascript-functions/methods-variables/execution.md
2022-08-30 16:36:31 +01:00

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}}];
```