批量删除

描述

object templategroup.massremove(object parameters)

此方法允许从多个模板组删除相关对象.

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

参数

(object) 参数包含要更新的模板组的ID和应删除的对象.

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

属性行为:
- 必选
templateidsID/array要被从模板组中删除的模板的ID.

属性行为:
- 必选

返回值

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

示例

从模板组中删除模板

从给出的模板组中删除两个模板.

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "templategroup.massremove",
  4. "params": {
  5. "groupids": [
  6. "5",
  7. "6"
  8. ],
  9. "templateids": [
  10. "30050",
  11. "30001"
  12. ]
  13. },
  14. "id": 1
  15. }

响应:

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

来源

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