object templatescreen.copy(object parameters)
This method allows to copy template screens to the given templates.
(object) Parameters defining the template screens to copy and the target templates.
| Parameter | Type | Description | 
|---|---|---|
| screenIds (required) | string/array | IDs of template screens to copy. | 
| templateIds (required) | string/array | IDs of templates to copy the screens to. | 
(boolean) Returns true if the copying was successful.
Copy template screen "25" to template "30085".
Request:
{
           "jsonrpc": "2.0",
           "method": "templatescreen.copy",
           "params": {
               "screenIds": "25",
               "templateIds": "30085"
           },
           "auth": "038e1d7b1735c6a5436ee9eae095879e",
           "id": 1
       }Response:
CTemplateScreen::copy() in frontends/php/include/classes/api/services/CTemplateScreen.php.