Skip to main content
GET
/
partner
/
dashboards
/
vulnerability
Vulnerability scan dashboard for instance
curl --request GET \
  --url https://api.example.com/partner/dashboards/vulnerability
{
  "current_grade": "<string>",
  "previous_grade": "<string>",
  "top_5_profiles": [
    {
      "name": "<string>",
      "times_used": 123,
      "machines": 123
    }
  ],
  "target_results": [
    {
      "name": "<string>",
      "ip_address": "<string>",
      "os": "<string>",
      "last_scanned": "<string>",
      "vuln_count_critical": 123,
      "vuln_count_high": 123,
      "vuln_count_medium": 123,
      "vuln_count_low": 123
    }
  ]
}

Headers

Authorization
string

Response

OK

Represents dashboard vulnerability data including grades, top profiles, and target results.

current_grade
string | null

Current vulnerability grade.

previous_grade
string | null

Previous vulnerability grade.

top_5_profiles
Vulnerability Profile · object[] | null

List of top 5 vulnerability profiles.

target_results
Sensitive Vulnerability Target · object[] | null

List of sensitive vulnerability targets.