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

template.delete

Description

object template.delete(array templateIds)

This method allows to delete templates.

Deleting a template will cause deletion of all template entities (items, triggers, graphs, etc.). To leave template entities with the hosts, but delete the template itself, first unlink the template from required hosts using one of these methods: template.update, template.massupdate, host.update, host.massupdate.

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.

Parametri

(array) ID dei modelli da eliminare.

Valori di ritorno

(object) Restituisce un oggetto contenente gli ID dei modelli eliminati sotto la proprietà templateids.

Esempi

Deleting multiple templates

Delete two templates.

Request:

{
           "jsonrpc": "2.0",
           "method": "template.delete",
           "params": [
               "13",
               "32"
           ],
           "auth": "038e1d7b1735c6a5436ee9eae095879e",
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "templateids": [
                   "13",
                   "32"
               ]
           },
           "id": 1
       }

Fonte

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