Summary
          Delete one or more config parsers by Id
          Description
          This API call will delete config parsers based on given Ids
          Route
          DELETE /configuration_manager/configurations/parsers
          Roles
          
            admin
apiwrite
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | parserIds | array | yes | Array of config parser Ids | 
            
          
          
            Copied to Clipboard
            
            {
  "parserIds": [
    "5c35355dbebaa82eaf8113f0",
    "5c35355dbebaa82eaf8113f0",
    "5c35355dbebaa82eaf8113f0",
    "5c35355dbebaa82eaf8113f0"
  ]
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "parserIds": {
      "title": "parserIds",
      "type": "array",
      "items": {
        "$ref": "common#/definitions/mongoObjectId"
      }
    }
  },
  "required": [
    "parserIds"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | Status | object | Status with the number of config parsers deleted | 
            
          
          
            Copied to Clipboard
            
            {
  "status": "conflict",
  "deleted": 97886282
}
           
          
            Copied to Clipboard
            
            {
  "title": "Status",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "success",
        "conflict"
      ]
    },
    "deleted": {
      "type": "integer",
      "minimum": 0
    }
  }
}