Esta es una traducción de la página de documentación original en español. Ayúdanos a mejorarla.

usermacro.updateglobal

Description

object usermacro.updateglobal(object/array globalMacros)

This method allows to update existing global macros.

This method is only available to Super admin user type. Permissions to call the method can be revoked in user role settings. See User roles for more information.

Parameters

(object/array) Global macro properties 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.

Valores devueltos

(objeto) Devuelve un objeto que contiene los ID de las macros globales actualizadas bajo la propiedad globalmacroids.

Ejemplos

Changing the value of a global macro

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

Request:

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

Response:

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

Fuente

CUserMacro::updateGlobal() en ui/include/classes/api/services/CUserMacro.php.