object usermacro.createglobal(object/array globalMacros)
This method allows to create new global macros.
(object/array)
Global macros to create.
The method accepts global macros with the standard global macro properties.
(object)
Returns an object containing the IDs of the created global macros under the globalmacroids
property. The order of the returned IDs matches the order of the passed global macros.
Create a global macro "{$SNMP_COMMUNITY}" with value "public".
Request:
{
"jsonrpc": "2.0",
"method": "usermacro.createglobal",
"params": {
"macro": "{$SNMP_COMMUNITY}",
"value": "public"
},
"auth": "038e1d7b1735c6a5436ee9eae095879e",
"id": 1
}
Response:
CUserMacro::createGlobal() in frontends/php/include/classes/api/services/CUserMacro.php.