Это перевод страницы документации с английского языка. Помогите нам сделать его лучше.

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
       }
Copy
✔ Copied

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "groupids": [
                   "7"
               ]
           },
           "id": 1
       }
Copy
✔ Copied

Source

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

To toggle search highlight, press Ctrl+Alt+H
Have an improvement suggestion for this page? Select the text that could be improved and press Ctrl+Enter to send it to the editors.