object template.massadd(objektumparaméterek)
Ez a módszer lehetővé teszi több kapcsolódó objektum egyidejű hozzáadását a adott sablonok.
Ez a módszer csak az Admin és a Kiemelt rendszergazda számára érhető el felhasználói típusok. A metódus meghívására vonatkozó engedélyek felhasználói szerepkörben visszavonhatók beállítások. Lásd: User roles további információért.
(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 (required) |
object/array | Templates to be updated. The templates must have the templateid property defined. |
groups | object/array | Host groups to add the given templates to. The host 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)
A frissített sablonok azonosítóit tartalmazó objektumot ad vissza a templateids
tulajdonság alatt.
Add host group "2" to a two templates.
Request:
{
"jsonrpc": "2.0",
"method": "template.massadd",
"params": {
"templates": [
{
"templateid": "10085"
},
{
"templateid": "10086"
}
],
"groups": [
{
"groupid": "2"
}
]
},
"auth": "038e1d7b1735c6a5436ee9eae095879e",
"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() az ui/include/classes/api/services/CTemplate.php fájlban.