object templatescreen.create(object/array templateScreens)
This method allows to create new template screens该方法允许创建新的模板聚合图形.
(object/array) Template screens to create要创建的模板聚合图形.
Additionally to the standard template screen properties, the method accepts the following parameters. 除standard template screen properties之外,该方法接受以下参数.
| Parameter参数 T | pe类型 Des | ription说明 | 
|---|---|---|
| screenitems | array | Template screen items to create on the screen聚合图形上要创建的模板聚合图形项. | 
(object) Returns an object containing the IDs of the created template screens under the screenids property. The order of the returned IDs matches the order of the passed template screens. (object)返回一个包含screenids属性下创建的模板聚合图形的ID的对象,返回的ID的顺序与传递的模板聚合图形的顺序相匹配。
Create a template screen named “Graphs” with 2 rows and 3 columns and add a graph to the upper-left cell创建一个名为“Graphs”的模板聚合图形,带有2行和3列,并将图形添加到左上角的单元格。.
Request请求:
{
           "jsonrpc": "2.0",
           "method": "templatescreen.create",
           "params": {
               "name": "Graphs",
               "templateid": "10047",
               "hsize": 3,
               "vsize": 2,
               "screenitems": [
                   {
                       "resourcetype": 0,
                       "resourceid": "410",
                       "x": 0,
                       "y": 0
                   }
               ]
           },
           "auth": "038e1d7b1735c6a5436ee9eae095879e",
           "id": 1
       }Response响应:
CTemplateScreen::create() in frontends/php/include/classes/api/services/CTemplateScreen.php.