Summary
          Get historical graded compliance reports.
          Description
          Get historical graded compliance reports for a device on a node.
          Route
          POST /configuration_manager/compliance_reports/grade/history
          Roles
          
            admin
apiwrite
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | treeId | string | yes | - | 
    | version | string | yes | - | 
    | nodePath | string | yes | - | 
    | deviceName | string | yes | - | 
    | options | object | yes | - | 
            
          
          
            Copied to Clipboard
            
            {
  "treeId": "5c35355dbebaa82eaf8113f0",
  "version": "initial",
  "nodePath": "base",
  "deviceName": "xr9kv-atl",
  "options": {
    "weights": {
      "error": -88046255.64825836,
      "warning": -65688672.42567316,
      "info": -54055783.30057725
    },
    "limit": 25335097
  }
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "treeId": {
      "title": "treeId",
      "$ref": "common#/definitions/mongoObjectId"
    },
    "version": {
      "title": "version",
      "$ref": "goldenConfigData#/definitions/goldenConfigTreeVersionName"
    },
    "nodePath": {
      "title": "nodePath",
      "$ref": "goldenConfigData#/definitions/goldenConfigNodePath"
    },
    "deviceName": {
      "title": "deviceName",
      "$ref": "deviceData#/definitions/deviceName"
    },
    "options": {
      "title": "options",
      "$ref": "goldenConfigData#/definitions/gradeDeviceComplianceHistoryOptions"
    }
  },
  "required": [
    "treeId",
    "version",
    "nodePath",
    "deviceName",
    "options"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | graded_compliance_history | array | - | 
            
          
          
            Copied to Clipboard
            
            [
  {
    "id": "5c35355dbebaa82eaf8113f0",
    "nodePath": "base/US East/Atlanta",
    "deviceName": "xr9kv-atl",
    "timestamp": "2019-04-12T14:42:47.958Z",
    "error": 29056534,
    "warning": 59883751,
    "info": 93765177,
    "pass": 28685774,
    "score": 17.522187053233672,
    "grade": "pass"
  }
]