批量添加模板

描述

object template.massadd(object parameters)

此方法允许同时向给定模板添加多个相关对象。

此方法仅适用于管理员超级管理员用户类型。可以在用户角色设置中撤销调用该方法的权限。详情请阅 User roles

参数

(object)参数包含要更新的模板ID和要添加到模板的对象的参数。

该方法接受以下参数。

参数类型描述
templates
(必须)
object/array要更新的模板。

模板必须定义templateid属性。
groupsobject/array要将给定模板添加到的主机群组。

主机组必须定义groupid属性。
macrosobject/array为给定模板创建的用户宏。
templates_linkobject/array链接到给定模板的模板。

模板必须定义templateid属性。

返回值

(object) 返回一个对象,该对象包含templateids属性下已更新模板的ID。

示例

将一个群组链接到模板

将主机群组“2”添加到两个模板中。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "template.massadd",
  4. "params": {
  5. "templates": [
  6. {
  7. "templateid": "10085"
  8. },
  9. {
  10. "templateid": "10086"
  11. }
  12. ],
  13. "groups": [
  14. {
  15. "groupid": "2"
  16. }
  17. ]
  18. },
  19. "auth": "038e1d7b1735c6a5436ee9eae095879e",
  20. "id": 1
  21. }

响应:

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

Link templates “10106” and “10104” to template “10073”.

Request:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "template.massadd",
  4. "params": {
  5. "templates": [
  6. {
  7. "templateid": "10073"
  8. }
  9. ],
  10. "templates_link": [
  11. {
  12. "templateid": "10106"
  13. },
  14. {
  15. "templateid": "10104"
  16. }
  17. ]
  18. },
  19. "id": 1
  20. }

Response:

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

参阅

源码

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