list_reports
Retrieve available reports from the Frappe Framework system, with optional filtering by module and limit settings to focus on specific reporting needs.
Instructions
Get a list of all available reports in the system.
Args:
module: Filter reports by module (optional)
limit: Maximum number of reports to return (default: 50)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
module | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 50,
"title": "Limit"
},
"module": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Module"
}
},
"title": "list_reportsArguments",
"type": "object"
}