GET
/
project
/
{projectId}
/
results
/
overview
curl --request GET \
  --url https://app-preprod.cybedefend.com/project/{projectId}/results/overview
{
  "totalBySeverity": [
    [
      {
        "severity": "<string>",
        "count": 123
      }
    ]
  ],
  "totalByState": [
    [
      {
        "state": "<string>",
        "count": 123
      }
    ]
  ],
  "totalByAnalysisType": [
    [
      {
        "analysisType": "<string>",
        "count": 123
      }
    ]
  ],
  "vulnerabilitiesOverTime": [
    [
      {
        "date": "<string>",
        "severity": 123,
        "count": 123
      }
    ]
  ]
}

Path Parameters

projectId
string
required

Response

200
application/json

Project overview

The response is of type object.