Skip to content

GET /api/export/assessment-history

Export the full assessment audit trail as a CSV file.

Parameters

NameTypeRequiredDescription
organisation_idstring (UUID)YesOrganisation to export
project_idstring (UUID)NoFilter to a project
risk_idstring (UUID)NoFilter to a specific risk
start_datestring (YYYY-MM-DD)NoStart of date range
end_datestring (YYYY-MM-DD)NoEnd of date range

Authentication

Requires a valid session with read permission on risks.

Request

bash
curl "https://lydaro.app/api/export/assessment-history?organisation_id=ORG_UUID&start_date=2026-01-01" \
  -H "Cookie: sb-access-token=..."

Response

Status: 200 OK

CSV with columns: Risk ID, Risk Title, Project, Assessed At, Assessed By, Inherent Probability, Inherent Impact, Inherent Score, Residual Probability, Residual Impact.

Errors

StatusCause
400Missing organisation_id
401No valid session
403Insufficient permissions