Skip to main content
GET
/
organization
/
{organizationId}
/
results
/
overview
Get aggregated overview statistics for an organization
curl --request GET \
  --url https://us.cybedefend.com/organization/{organizationId}/results/overview \
  --header 'Authorization: Bearer <token>'
{
  "organizationId": "<string>",
  "totalProjects": 123,
  "totalTeams": 123,
  "totalBySeverity": [
    {
      "severity": "<string>",
      "count": 123
    }
  ],
  "totalByState": [
    {
      "state": "<string>",
      "count": 123
    }
  ],
  "totalByAnalysisType": [
    {
      "analysisType": "<string>",
      "count": 123
    }
  ],
  "vulnerabilitiesOverTime": [
    {
      "date": "<string>",
      "severity": 123,
      "count": 123
    }
  ],
  "projectsSummary": [
    {
      "projectId": "<string>",
      "projectName": "<string>",
      "teamId": "<string>",
      "teamName": "<string>",
      "riskLevel": "<string>",
      "criticalCount": 123,
      "highCount": 123,
      "mediumCount": 123,
      "lowCount": 123,
      "totalVulnerabilities": 123,
      "sastCount": 123,
      "scaCount": 123,
      "iacCount": 123,
      "containerCount": 123
    }
  ],
  "teamsSummary": [
    {
      "teamId": "<string>",
      "teamName": "<string>",
      "projectCount": 123,
      "criticalCount": 123,
      "highCount": 123,
      "mediumCount": 123,
      "lowCount": 123,
      "totalVulnerabilities": 123
    }
  ],
  "topVulnerableProjects": [
    {
      "projectId": "<string>",
      "projectName": "<string>",
      "teamName": "<string>",
      "vulnerabilityCount": 123,
      "criticalCount": 123,
      "highCount": 123
    }
  ],
  "highRiskProjects": 123,
  "mediumRiskProjects": 123,
  "lowRiskProjects": 123,
  "newIssuesLast7Days": 123,
  "solvedIssuesLast7Days": 123,
  "solvedIssues": 123,
  "newIssues": 123,
  "criticalIssues": 123,
  "highIssues": 123,
  "mediumIssues": 123,
  "lowIssues": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organizationId
string<uuid>
required

Response

Organization overview with aggregated statistics

organizationId
string
required

Organization identifier

totalProjects
number
required

Total number of projects in the organization

totalTeams
number
required

Total number of teams in the organization

totalBySeverity
object[]
required

Aggregation of vulnerabilities grouped by severity

totalByState
object[]
required

Aggregation of vulnerabilities grouped by state

totalByAnalysisType
object[]
required

Aggregation of vulnerabilities grouped by analysis type

vulnerabilitiesOverTime
object[]
required

Vulnerabilities over time grouped by severity

projectsSummary
object[]
required

Summary statistics for each project

teamsSummary
object[]
required

Summary statistics for each team

topVulnerableProjects
object[]
required

Top 10 most vulnerable projects

highRiskProjects
number
required

Number of projects with critical or high risk level

mediumRiskProjects
number
required

Number of projects with medium risk level

lowRiskProjects
number
required

Number of projects with low or no risk level

newIssuesLast7Days
number
required

Number of new issues discovered in the last 7 days

solvedIssuesLast7Days
number
required

Number of issues resolved in the last 7 days

solvedIssues
number
required

Total number of resolved issues

newIssues
number
required

Total number of new issues (all time)

criticalIssues
number
required

Total number of critical severity issues

highIssues
number
required

Total number of high severity issues

mediumIssues
number
required

Total number of medium severity issues

lowIssues
number
required

Total number of low severity issues