On this page
delete()
Available since version: 1.8
This function allows you to delete information about one or several
maintenances. All maintenance-related information will be removed
including items, graphs, macros, application, historical data, etc.
Parameters
Array of Maintenance IDs
Returns
| Parameter | Description |
|---|---|
| result | Operation successful. Result will contain array of deleted Maintenance IDs. |
| error | In case of any errors |
Example
Delete maintenances by Maintenance ID
{
"jsonrpc":"2.0",
"method":"maintenance.delete",
"params":["107824", "107825"],
"auth":"3a57200802b24cda67c4e4010b50c065",
"id":2
}
Maintenances deleted successfully:
{
"jsonrpc":"2.0",
"result":{
"maintenanceids": ["107824", "107825"]
},
"id":2
}
Maintenance does not exist:
{
"jsonrpc":"2.0",
"error":{
"code":-32500,
"message":"Application error.",
"data":"[ CMaintenance::delete ] Maintenance does not exist"
},
"id":2
}