execute_workflow_with_monitoring
Run and monitor a workflow by its ID, receiving job status and details upon completion or failure. Input data is provided as name-value pairs for workflow execution.
Instructions
Execute a workflow by its ID and monitor its execution status. This call will return a jobID, he Job status and the job details once the execution is completed or failed. The input data parameter is a list of name-value pairs, each containing a name and value.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input_data | No | ||
workflow_id | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"InputData": {
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"value": {
"title": "Value",
"type": "string"
}
},
"required": [
"name",
"value"
],
"title": "InputData",
"type": "object"
}
},
"properties": {
"input_data": {
"default": null,
"items": {
"$ref": "#/$defs/InputData"
},
"title": "Input Data",
"type": "array"
},
"workflow_id": {
"title": "Workflow Id",
"type": "string"
}
},
"required": [
"workflow_id"
],
"title": "execute_workflow_with_monitoringArguments",
"type": "object"
}