templategroup.update
Описание
object templategroup.update(объект/массив templateGroups)
Этот метод позволяет обновлять существующие группы шаблонов.
Этот метод доступен только пользователям с типом доступа Администратор и Супер-администратор. Разрешения на вызов метода можно отозвать в настройках ролей пользователя. Дополнительную информацию см. в разделе Роли пользователей.
Parameters
(object/array) Template group properties to be
updated.
The groupid property must be defined for each template group, all other
properties are optional. Only the given properties will be updated, all
others will remain unchanged.
Return values
(object) Returns an object containing the IDs of the updated template
groups under the groupids property.
Примеры
Renaming a template group
Rename a template group to "Templates/Databases"
Request:
{
"jsonrpc": "2.0",
"method": "templtegroup.update",
"params": {
"groupid": "7",
"name": "Templates/Databases"
},
"auth": "700ca65537074ec963db7efabda78259",
"id": 1
}
Response:
{
"jsonrpc": "2.0",
"result": {
"groupids": [
"7"
]
},
"id": 1
}
Источник
CTemplateGroup::update() в ui/include/classes/api/services/CTemplateGroup.php.