Folderr
Official
by folderr-tech
execute_workflow
Execute a workflow with the required inputs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputs | Yes | Input values required by the workflow | |
workflow_id | Yes | ID of the workflow |
Input Schema (JSON Schema)
{
"properties": {
"inputs": {
"additionalProperties": true,
"description": "Input values required by the workflow",
"type": "object"
},
"workflow_id": {
"description": "ID of the workflow",
"type": "string"
}
},
"required": [
"workflow_id",
"inputs"
],
"type": "object"
}