Summary
          Auto Fix
          Description
          Patch device configuration automatically from compliance report
          Route
          No Northbound API Available
          Roles
          
            admin
apiwrite
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | complianceReportId | string | yes | - | 
    | removeDisallowedConfig | boolean | yes | - | 
            
          
          
            Copied to Clipboard
            
            {
  "complianceReportId": "5c35355dbebaa82eaf8113f0",
  "removeDisallowedConfig": false
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "complianceReportId": {
      "title": "complianceReportId",
      "$ref": "common#/definitions/mongoObjectId"
    },
    "removeDisallowedConfig": {
      "title": "removeDisallowedConfig",
      "type": "boolean"
    }
  },
  "required": [
    "complianceReportId",
    "removeDisallowedConfig"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | remediationResult | object | - | 
            
          
          
            Copied to Clipboard
            
            {
  "response": [
    {
      "result": true,
      "parents": [
        "id",
        "ipsum",
        "Lorem"
      ],
      "new": "occaecat et sed reprehenderit",
      "old": "minim aute eu proident non"
    },
    {
      "result": false,
      "parents": [
        "consectetur",
        "veniam adipisicing",
        "aliquip eiusmod",
        "sit sunt velit nulla ullamco",
        "in voluptate culpa non ad"
      ],
      "new": "eiusmod",
      "old": "Ut et"
    }
  ]
}
           
          
            Copied to Clipboard
            
            {
  "title": "remediationResult",
  "type": "object",
  "properties": {
    "response": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "result": {
            "type": "boolean"
          },
          "parents": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "new": {
            "type": "string"
          },
          "old": {
            "type": "string"
          }
        }
      }
    }
  }
}