get_workflow
Retrieve a specific n8n workflow using its unique ID to access workflow details and configuration for automation processes.
Instructions
Get a specific n8n workflow by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The workflow ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The workflow ID",
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"id"
],
"type": "object"
}