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

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

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

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

This method allows to update existing global macros.

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

[comment]: # ({be7c969e-be7c969e})
### 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-be7c969e})

[comment]: # ({9c6d43ad-9c6d43ad})
### Return values

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

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

[comment]: # ({b41637d2-b41637d2})
### Examples

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

[comment]: # ({bd208b05-bd208b05})
#### 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
}
```

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

[comment]: # ({057e372d-057e372d})
### Source

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

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