rollback_workflow
Restore a workflow to a previous version by specifying the workflow ID and target version. Enables precise version control and correction of errors in workflow executions.
Instructions
Rollback a workflow to a previous version
Input Schema
Name | Required | Description | Default |
---|---|---|---|
reason | No | ||
target_version | Yes | ||
workflow_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"reason": {
"type": "string"
},
"target_version": {
"type": "string"
},
"workflow_id": {
"type": "string"
}
},
"required": [
"workflow_id",
"target_version"
],
"type": "object"
}