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": [
    "0e0ba17c-efac-1ddc-58db-2d9a04890b47",
    "4a49de7a-b195-0b99-ed73-0990b0dbbd8d",
    "c4b001d4-2eee-0efb-cfb0-0e426bc844fc",
    "bc79ee2c-4666-1e32-911e-12feaba25544"
  ]
}
           
          
            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": 4,
  "ok": 15
}
           
          
            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"
  ]
}