get_workflow_inputs
Retrieve necessary input parameters for a specific workflow using the workflow ID to streamline workflow execution.
Instructions
Get the required inputs for a workflow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| workflow_id | Yes | ID of the workflow |
Input Schema (JSON Schema)
{
"properties": {
"workflow_id": {
"description": "ID of the workflow",
"type": "string"
}
},
"required": [
"workflow_id"
],
"type": "object"
}