kiwi_rpc
Invoke any Kiwi JSON-RPC method directly by passing its method name and positional params array. Use this for unsupported or custom operations requiring exact method calls.
Instructions
Call ANY Kiwi JSON-RPC method directly. method e.g. "TestCase.filter", "TestPlan.tree", "Bug.report". params is the POSITIONAL argument array Kiwi expects (usually a single dict for *.filter, or [id, {patch}] for *.update). Unguarded — you are responsible for correct method + params. Full method list: https://kiwitcms.readthedocs.io/en/latest/modules/tcms.rpc.api.html
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| method | Yes | Namespace.method, e.g. TestRun.filter | |
| params | No | Positional params array; defaults to [] |