activate_workflow
Start an n8n workflow by providing its ID to execute automated processes and trigger workflow actions.
Instructions
Activate 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"
}