start_workflow_execution
Initiate a workflow execution by its ID using input data as name-value pairs, returning a job ID for tracking and managing the process.
Instructions
Start a workflow execution by its ID and return the job ID. This will create a new job and add it to the execution queue. This call will return a job ID that can be used to get the job details later. The input data 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": "start_workflow_executionArguments",
"type": "object"
}