批量添加

描述

object templategroup.massadd(object parameters)

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

此方法只有Super admin(超级管理员)用户可用. 可以在用户角色设置中撤销调用该方法的权限. 更多信息请查看 User roles.

参数

(object) 参数包含要更新的模板组ID和要添加到这些模板组中的对象.

该方法接受以下参数.

参数类型描述
groupsobject/array要更新的模板组.

这些模板组只能定义一个groupid属性.

属性行为:
- 必选
templatesobject/array需要被添加到模板组中的模板.

这些模板只能定义一个templateid 属性.

属性行为:
- 必选

返回值

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

示例

将模板添加到模板组中

将两个模板添加到ID为12和13的模板组中.

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "templategroup.massadd",
  4. "params": {
  5. "groups": [
  6. {
  7. "groupid": "12"
  8. },
  9. {
  10. "groupid": "13"
  11. }
  12. ],
  13. "templates": [
  14. {
  15. "templateid": "10486"
  16. },
  17. {
  18. "templateid": "10487"
  19. }
  20. ]
  21. },
  22. "id": 1
  23. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "groupids": [
  5. "12",
  6. "13"
  7. ]
  8. },
  9. "id": 1
  10. }

参阅

来源

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