call_method
Execute whitelisted Frappe methods with optional parameters to automate backend operations and integrate with Frappe Framework functionality.
Instructions
Execute a whitelisted Frappe method.
Args:
method: Method name to call (whitelisted)
params: Parameters to pass to the method (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method | Yes | ||
params | No |
Input Schema (JSON Schema)
{
"properties": {
"method": {
"title": "Method",
"type": "string"
},
"params": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
}
},
"required": [
"method"
],
"title": "call_methodArguments",
"type": "object"
}