On this page
report.delete
Description
object report.delete(array reportids)
This method allows to delete scheduled reports.
This method is only available to Admin and Super admin user type. Permissions to call the method can be revoked in user role settings. See User roles for more information.
Parameters
(array) IDs of the scheduled reports to delete.
Return values
(object) Returns an object containing the IDs of the deleted scheduled
reports under the reportids property.
Examples
Deleting multiple scheduled reports
Delete two scheduled reports.
{
"jsonrpc": "2.0",
"method": "report.delete",
"params": [
"1",
"2"
],
"id": 1
}
Response:
{
"jsonrpc": "2.0",
"result": {
"reportids": [
"1",
"2"
]
},
"id": 1
}
Source
CReport::delete() in ui/include/classes/api/services/CReport.php.