run_once
Execute a workflow manually one time to trigger immediate processing and receive detailed execution results for testing or ad-hoc automation tasks.
Instructions
Execute a workflow manually once and return execution details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | No | ||
| workflowId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"type": "object"
},
"workflowId": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"workflowId"
],
"type": "object"
}