Summary
          Delete a List of Templates
          Description
          Delete a List of Smart Templates
          Route
          DELETE /smart_template/list
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | 
                Type | 
                Required | 
                Description | 
              
            
            
              
    | ids | 
    array | 
    yes | 
    List of ids of smart templates to delete | 
  
            
          
          
            Copied to Clipboard
            
            {
  "ids": [
    "dac4a6f3-cfae-ca47-5d27-7be64474180a",
    "86f522f2-a217-ab7f-07d4-bab429abcb76",
    "73ca7414-e5c4-ddef-d774-a867c0519fdd",
    "200e48b3-a9b5-0378-3777-e4cfd1ab6733"
  ]
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "ids": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$"
      },
      "minItems": 2
    }
  },
  "required": [
    "ids"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | 
                Type | 
                Description | 
              
            
            
              
                | status | 
                object | 
                Status of Removal | 
              
            
          
          
            Copied to Clipboard
            
            {
  "n": 9,
  "ok": 5
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "n": {
      "type": "number",
      "minimum": 0,
      "maximum": 15,
      "multipleOf": 1
    },
    "ok": {
      "type": "number",
      "minimum": 0,
      "maximum": 15,
      "multipleOf": 1
    }
  },
  "required": [
    "n",
    "ok"
  ]
}