This is the documentation page for an unsupported version of Zabbix.
Is this not what you were looking for? Switch to the current version or choose one from the drop-down menu.
Table of Contents

delete()

Available since version: 1.8
This function allows you to delete information about one or several actions. Action items will be removed.

Parameters

Array of Action IDs

Returns

Parameter Description
result Operation successful. Result will contain array of deleted Action IDs.
error In case of any errors

Example

Delete actions by action ID

{
       "jsonrpc":"2.0",
       "method":"action.delete",
       "params":["107824",  "107825"],
       "auth":"3a57200802b24cda67c4e4010b50c065",
       "id":2
       }
Copy
✔ Copied

Actions deleted successfully:

{
       "jsonrpc":"2.0",
       "result":{
          "actionids": ["107824", "107825"]
       },
       "id":2
       }
Copy
✔ Copied

Actions does not exist:

{
       "jsonrpc":"2.0",
       "error":{
             "code":-32500,
             "message":"Application error.",
             "data":"[ CAction::delete ] Action does not exist"
       },
       "id":2
       }
Copy
✔ Copied
To toggle search highlight, press Ctrl+Alt+H
Have an improvement suggestion for this page? Select the text that could be improved and press Ctrl+Enter to send it to the editors.