创建

描述

object template.create(object/array templates)

这个方法可以创建新的模版。

这个方法只有 AdminSuper admin 用户类型可用。在用户角色设置中可以撤销调用该方法的权限。 查看 用户角色获取更多信息。

参数

(object/array) 创建模版。

除了 标准模版属性, 这个方法还接收如下参数。

参数类型描述
groupsobject/array将模版添加到模版组

模板组必须只定义了 groupid 属性。

参数行为:
- 必需
tagsobject/array模版标签.
templatesobject/array要链接到模版的模版

模板必须只定义了 templateid 属性。
macrosobject/array为模版创建的用户宏

返回值

(object)templateids 属性下返回一个包含创建的模板的ID的对象。返回的ID顺序与传入模板的顺序相匹配。

示例

创建一个模版

创建一个带有标签的模板,并将另外两个模板链接到这个模板上。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "template.create",
  4. "params": {
  5. "host": "Linux template",
  6. "groups": {
  7. "groupid": 1
  8. },
  9. "templates": [
  10. {
  11. "templateid": "11115"
  12. },
  13. {
  14. "templateid": "11116"
  15. }
  16. ],
  17. "tags": [
  18. {
  19. "tag": "Host name",
  20. "value": "{HOST.NAME}"
  21. }
  22. ]
  23. },
  24. "id": 1
  25. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "templateids": [
  5. "11117"
  6. ]
  7. },
  8. "id": 1
  9. }

来源

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