object usermacro.create(object/array hostMacros)
This method allows to create new host macros.
This method is only available to Admin and Super admin user types. Permissions to call the method can be revoked in user role settings. See User roles for more information.
(object/array)
Host macros to create.
The method accepts host macros with the standard host macro properties.
(object)
Returns an object containing the IDs of the created host macros under the hostmacroids
property. The order of the returned IDs matches the order of the passed host macros.
Create a host macro "{$SNMP_COMMUNITY}" with the value "public" on host "10198".
{
"jsonrpc": "2.0",
"method": "usermacro.create",
"params": {
"hostid": "10198",
"macro": "{$SNMP_COMMUNITY}",
"value": "public"
},
"id": 1
}
Response:
CUserMacro::create() in ui/include/classes/api/services/CUserMacro.php.