object template.massadd(object parameters)
This method allows to simultaneously add multiple related objects to the given templates.
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)
Parameters containing the IDs of the templates to update and the objects to add to the templates.
The method accepts the following parameters.
Parameter | Type | Description |
---|---|---|
templates | object/array | Templates to be updated. The templates must have the templateid property defined.Parameter behavior: - required |
groups | object/array | Template groups to add the given templates to. The template groups must have the groupid property defined. |
macros | object/array | User macros to be created for the given templates. |
templates_link | object/array | Templates to link to the given templates. The templates must have the templateid property defined. |
(object)
Returns an object containing the IDs of the updated templates under the templateids
property.
Add template group "2" to two templates.
{
"jsonrpc": "2.0",
"method": "template.massadd",
"params": {
"templates": [
{
"templateid": "10085"
},
{
"templateid": "10086"
}
],
"groups": [
{
"groupid": "2"
}
]
},
"id": 1
}
Response:
Link templates "10106" and "10104" to template "10073".
{
"jsonrpc": "2.0",
"method": "template.massadd",
"params": {
"templates": [
{
"templateid": "10073"
}
],
"templates_link": [
{
"templateid": "10106"
},
{
"templateid": "10104"
}
]
},
"id": 1
}
Response:
CTemplate::massAdd() in ui/include/classes/api/services/CTemplate.php.