report.update
Description
object report.update(object/array reports)
This method allows to update existing 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
(object/array) Scheduled report properties to be updated.
The reportid property must be defined for each scheduled report, all
other properties are optional. Only the passed properties will be
updated, all others will remain unchanged.
Additionally to the standard scheduled report properties the method accepts the following parameters.
| Parameter | Type | Description |
|---|---|---|
| users | object/array of objects | Users to replace the current users assigned to the scheduled report. |
| user_groups | object/array of objects | User groups to replace the current user groups assigned to the scheduled report. |
Valori di ritorno
(oggetto) Restituisce un oggetto contenente gli ID dei report pianificati aggiornati
sotto la proprietà reportids.
Esempi
Disabling scheduled report
Request:
{
"jsonrpc": "2.0",
"method": "report.update",
"params": {
"reportid": "1",
"status": "0"
},
"auth": "038e1d7b1735c6a5436ee9eae095879e",
"id": 1
}
Response:
{
"jsonrpc": "2.0",
"result": {
"reportids": [
"1"
]
},
"id": 1
}
Guarda anche
Fonte
CReport::update() in ui/include/classes/api/services/CReport.php.