execute_flow
Execute specific workflows from the HiveFlow automation platform using flow IDs and optional inputs to trigger automated processes.
Instructions
Ejecuta un flujo de trabajo especΓfico
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| flowId | Yes | ID del flujo a ejecutar | |
| inputs | No | Inputs opcionales para el flujo |
Input Schema (JSON Schema)
{
"properties": {
"flowId": {
"description": "ID del flujo a ejecutar",
"type": "string"
},
"inputs": {
"description": "Inputs opcionales para el flujo",
"type": "object"
}
},
"required": [
"flowId"
],
"type": "object"
}