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": [
    "59b80bf5b1a07ffc253ded7e",
    "a71a3839dcc67b6bc1e286c4",
    "fc0d864ee2286d7c09989e2f",
    "a7fc88664288550fd250273e",
    "9ac39a5a9e9cef5250a4213e"
  ]
}
           
          
            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": -43432800.19505409
}
           
          
            Copied to Clipboard
            
            {
  "title": "results",
  "type": "object",
  "properties": {
    "removeCount": {
      "type": "number"
    }
  },
  "required": [
    "removeCount"
  ]
}