template.delete

Description

object template.delete(array **templateIds**)

This method allows to delete 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.

Parameters

(array) IDs of the templates to delete.

Return values

(object) Returns an object containing the IDs of the deleted templates under the templateids property.

Examples

Deleting multiple templates

Delete two templates.

Request:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "template.delete",
  4. "params": [
  5. "13",
  6. "32"
  7. ],
  8. "auth": "038e1d7b1735c6a5436ee9eae095879e",
  9. "id": 1
  10. }

Response:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "templateids": [
  5. "13",
  6. "32"
  7. ]
  8. },
  9. "id": 1
  10. }

Source

CTemplate::delete() in ui/include/classes/api/services/CTemplate.php.