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

template.create

Description

object template.create(object/array templates)

This method allows to create new templates.

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.

Parameters

(object/array) Templates to create.

Additionally to the standard template properties, the method accepts the following parameters.

Parameter Type Description
groups
(required)
object/array Host groups to add the template to.

The host groups must have the groupid property defined.
tags object/array Template tags.
templates object/array Templates to be linked to the template.

The templates must have the templateid property defined.
macros object/array User macros to be created for the template.

Valori di ritorno

(object) Restituisce un oggetto contenente gli ID dei modelli creati sotto la proprietà templateids. L'ordine degli ID restituiti corrisponde all'ordine dei modelli passati.

Esempi

Creating a template

Create a template with tags and link two templates to this template.

Request:

{
           "jsonrpc": "2.0",
           "method": "template.create",
           "params": {
               "host": "Linux template",
               "groups": {
                   "groupid": 1
               },
               "templates": [
                   {
                       "templateid": "11115"
                   },
                   {
                       "templateid": "11116"
                   }
               ],
               "tags": [
                   {
                       "tag": "Host name",
                       "value": "{HOST.NAME}"
                   }
               ]
           },
           "auth": "038e1d7b1735c6a5436ee9eae095879e",
           "id": 1
       }

Response:

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

Fonte

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