fetch_workflow_rule
Retrieve workflow rules by name to access input/output specifications for compliance operations. Returns the specific rule with parameters required for workflow execution.
Instructions
Retrieve a specific workflow rule by name.
Finds and returns the single workflow rule that matches the provided name. This rule contains the input/output specifications needed for workflow operations.
Args: name (str): The name of the workflow rule to retrieve
Returns: - rules (List[WorkflowRuleVO]): List containing the single matched workflow rule with input/output specifications - id: (str) - name: (str) - description: (str) - ruleInputs: [List[WorkflowRuleInputsVO]] - ruleOutputs: [List[WorkflowRuleOutputsVO]]
- error (Optional[str]): An error message if any issues occurred during retrieval.Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rules | No | ||
| error | No |