Summary
          Delete reports
          Description
          Delete Reports in multiple Golden Config Trees.
          Route
          POST /golden_config/deleteReports
          Roles
          
            admin
engineering
support
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | trees | array | yes | Trees to delete reports from. | 
            
          
          
            Copied to Clipboard
            
            {
  "trees": [
    {
      "label": "treeCisco",
      "_id": "0cd177f2-f3f4-aa63-ffc8-c06b3b2b8964"
    }
  ]
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "trees": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "label": {
            "type": "string",
            "examples": [
              "treeCisco",
              "treeJunos",
              "treeArista"
            ]
          },
          "_id": {
            "$ref": "IDType"
          }
        },
        "required": [
          "label",
          "_id"
        ]
      }
    }
  },
  "required": [
    "trees"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | trees | array | List of tree names for which reports were deleted | 
            
          
          
            Copied to Clipboard
            
            [
  {
    "label": "treeCisco"
  },
  {
    "label": "treeArista"
  },
  {
    "label": "treeJunos"
  },
  {
    "label": "treeJunos"
  }
]
           
          
            Copied to Clipboard
            
            {
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "label": {
        "type": "string",
        "examples": [
          "treeCisco",
          "treeJunos",
          "treeArista"
        ]
      }
    },
    "required": [
      "label"
    ]
  }
}