Skip to main content
GET
/
projects
/
{projectId}
/
compliance-history
Get compliance history for a project
curl --request GET \
  --url https://api-eu.cybedefend.com/projects/{projectId}/compliance-history
{
  "entries": [
    {
      "scanId": "550e8400-e29b-41d4-a716-446655440001",
      "compliant": true,
      "blockingViolationsCount": 0,
      "warningViolationsCount": 3,
      "evaluatedAt": "2024-01-15T10:31:00Z",
      "breakingRulesCount": 2,
      "evaluationId": "550e8400-e29b-41d4-a716-446655440000"
    }
  ],
  "total": 25,
  "page": 1,
  "pageSize": 10
}

Path Parameters

projectId
string<uuid>
required

Query Parameters

page
number
pageSize
number
startDate
string

ISO date string

endDate
string

ISO date string

Response

200 - application/json

Compliance history

entries
object[]
required

Compliance history entries

total
number
required

Total number of entries

Example:

25

page
number
required

Current page

Example:

1

pageSize
number
required

Page size

Example:

10