This is a translation of the original English documentation page. Help us make it better.

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.

Parametri

ID "(array)" dei report pianificati da eliminare.

Valori di ritorno

(oggetto) Restituisce un oggetto contenente gli ID dei report pianificati eliminati sotto la proprietà reportids.

Esempi

Deleting multiple scheduled reports

Delete two scheduled reports.

Request:

{
           "jsonrpc": "2.0",
           "method": "report.delete",
           "params": [
               "1",
               "2"
           ],
           "auth": "038e1d7b1735c6a5436ee9eae095879e",
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "reportids": [
                   "1",
                   "2"
               ]
           },
           "id": 1
       }

Fonte

CReport::delete() in ui/include/classes/api/services/CReport.php.