execute_workflow
Run predefined workflows by providing the workflow ID and necessary input values to automate tasks within Folderr's API management system.
Instructions
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"
}