frappe_run_method
Execute any whitelisted Frappe server method by providing its dotted path. Pass keyword arguments as needed to get results.
Instructions
Call a whitelisted server-side Python method on the Frappe site (e.g. 'frappe.auth.get_logged_user').
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kwargs | No | Keyword arguments to pass to the method. | |
| method | Yes | Dotted path to the method (e.g. 'frappe.auth.get_logged_user' or 'erpnext.stock.utils.get_stock_balance'). |