execute_workflow
Run a pre-defined workflow by name with key-value arguments to execute business logic, calculations, or custom processes on the server.
Instructions
Execute a named workflow method with arguments. Workflows are server-side scripts that contain business logic. Use this to trigger actions, run calculations, or invoke custom processes.
Before executing, use list_workflows to discover available workflows and get_workflow to read their source code and understand what they do.
Arguments are passed as key-value pairs matching the workflow's parameter names.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | Named arguments to pass to the workflow method. Keys must match the parameter names in the workflow's method signature. Values can be strings, numbers, booleans, or dates (ISO format). Example: { "nume": "Alex", "age": 30 } | |
| method | Yes | The workflow method to call. Typically 'main' for the default entry point. Check the workflow's source code (via get_workflow) for available methods. | main |
| workflowName | Yes | The name of the workflow to execute (e.g., 'AgeConcat', 'SystemCreateUserByName') |