Summary
          Deletes automations
          Description
          Deletes automations (based off an array of Ids)
          Route
          DELETE /automation_catalog/automations
          Roles
          
            admin
other
apiread
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | ids | array | yes | ids off the automation | 
            
          
          
            Copied to Clipboard
            
            {
  "ids": [
    "97fc7b911bb280fc1abe70da",
    "a2b2f7bb06241a378a8ce341",
    "e2520f11e14c32d8811fbe93",
    "7f84246e9b631c0d7d66c64c",
    "0cd9fefa0856134a41a0a65c"
  ]
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "ids": {
      "title": "ids",
      "type": "array",
      "items": {
        "title": "ids",
        "$ref": "automationDocument#/definitions/ObjectId"
      }
    }
  },
  "required": [
    "ids"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | results | object | Object containing a property removeCount | 
            
          
          
            Copied to Clipboard
            
            {
  "removeCount": -59050995.44590731
}
           
          
            Copied to Clipboard
            
            {
  "title": "results",
  "type": "object",
  "properties": {
    "removeCount": {
      "type": "number"
    }
  },
  "required": [
    "removeCount"
  ]
}