delete_workflow
Remove workflows from n8n automation platform by specifying the workflow ID to manage your automation processes effectively.
Instructions
Delete an n8n workflow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"id"
],
"type": "object"
}