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.

templategroup.create

Description

object templategroup.create(object/array templateGroups)

This method allows to create new template groups.

This method is only available to Super admin user type. Permissions to call the method can be revoked in user role settings. See User roles for more information.

Parameters

(object/array) Template groups to create. The method accepts template groups with the standard template group properties.

Return values

(object) Returns an object containing the IDs of the created template groups under the groupids property. The order of the returned IDs matches the order of the passed template groups.

Приклади

Creating a template group

Create a template group called "Templates/Databases".

Request:

{
           "jsonrpc": "2.0",
           "method": "templategroup.create",
           "params": {
               "name": "Templates/Databases"
           },
           "auth": "038e1d7b1735c6a5436ee9eae095879e",
           "id": 1
       }
Copy
✔ Copied

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "groupids": [
                   "107820"
               ]
           },
           "id": 1
       }
Copy
✔ Copied

Source

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

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.