object action.update(object/array actions)
This method allows to update existing actions.
This method is only available to Admin and Super admin user types. Permissions to call the method can be revoked in user role settings. See User roles for more information.
(object/array)
Action properties to be updated.
The actionid
property must be defined for each action, all other properties are optional. Only the passed properties will be updated, all others will remain unchanged.
Additionally to the standard action properties, the method accepts the following parameters.
Parameter | Type | Description |
---|---|---|
filter | object | Action filter object to replace the current filter. |
operations | array | Action operations to replace existing operations. |
recovery_operations | array | Action recovery operations to replace existing recovery operations. Parameter behavior: - supported if eventsource of Action object is set to "event created by a trigger", "internal event", or "event created on service status update" |
update_operations | array | Action update operations to replace existing update operations. Parameter behavior: - supported if eventsource of Action object is set to "event created by a trigger" or "event created on service status update" |
(object)
Returns an object containing the IDs of the updated actions under the actionids
property.
Disable an action, that is, set its status to "1".
{
"jsonrpc": "2.0",
"method": "action.update",
"params": {
"actionid": "2",
"status": "1"
},
"id": 1
}
Response:
CAction::update() in ui/include/classes/api/services/CAction.php.