activate_workflow
Enable automatic execution of a workflow by its ID using triggers like schedules or webhooks. Only workflows with automatic triggers can be activated.
Instructions
Activates a workflow by its ID, enabling it to run automatically based on its trigger (schedule, webhook, etc.). Note that only workflows with automatic trigger nodes can be activated - workflows with only manual triggers cannot be activated.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the workflow to activate - can be obtained from list_workflows |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "ID of the workflow to activate - can be obtained from list_workflows",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}