[comment]: # ({a16741b3-a16741b3})
# usermacro.updateglobal

[comment]: # ({/a16741b3-a16741b3})

[comment]: # ({ed0716f4-b4c6f3cf})
### 说明

`object usermacro.updateglobal(object/array globalMacros)`

此方法允许更新现有的全局宏。

[comment]: # ({/ed0716f4-b4c6f3cf})

[comment]: # ({b4c6f3cf-be7c969e})
### Description

`object usermacro.updateglobal(object/array globalMacros)`

This method allows to update existing global macros.

[comment]: # ({/b4c6f3cf-be7c969e})

[comment]: # ({e7a15f3f-9c6d43ad})
### 参数

`(object/array)` 要更新的[全局宏属性](object#global_macro)。

必须为每个全局宏定义`globalmacroid`属性，所有其他属性都是可选的。
只有通过的属性将被更新，所有其他属性将保持不变。

[comment]: # ({/e7a15f3f-9c6d43ad})

[comment]: # ({be7c969e-b41637d2})
### Parameters

`(object/array)` [Global macro properties](object#global_macro) to be
updated.

The `globalmacroid` property must be defined for each global macro, all
other properties are optional. Only the passed properties will be
updated, all others will remain unchanged.

[comment]: # ({/be7c969e-b41637d2})

[comment]: # ({4461a1c7-bd208b05})
### 返回值

`(object)` 返回包含“globalmacroids”属性下更新的全局宏的ID的对象。

[comment]: # ({/4461a1c7-bd208b05})

[comment]: # ({453686ba-057e372d})
### Return values

`(object)` Returns an object containing the IDs of the updated global
macros under the `globalmacroids` property.

### 示例

### Examples

#### 更改全局宏的值

将全局宏的值更改为“public”。

#### Changing the value of a global macro

Change the value of a global macro to "public".

Request:

``` {.java}
{
    "jsonrpc": "2.0",
    "method": "usermacro.updateglobal",
    "params": {
        "globalmacroid": "1",
        "value": "public"
    },
    "auth": "038e1d7b1735c6a5436ee9eae095879e",
    "id": 1
}
```

Response:

``` {.java}
{
    "jsonrpc": "2.0",
    "result": {
        "globalmacroids": [
            "1"
        ]
    },
    "id": 1
}
```

### 来源

CUserMacro::updateGlobal() in
*frontends/php/include/classes/api/services/CUserMacro.php*.

[comment]: # ({/453686ba-057e372d})
