Assessment
Gets all documents for a specific assessment of a monitored company.
Retrieves all documents for the specified assessment, including document metadata, summary, status, issuer, organization, and issues.
get/api/v2/companies/{id}/assessments/{assessmentId}/documents
Path parameters
idinteger required
Example:123
The id of the company whose assessment documents will be retrieved.
assessmentIdinteger required
Example:456
The id of the assessment whose documents will be retrieved.
Response
Assessment documents retrieved successfully.
Example response
[
{
"DocumentId": 2048,
"Name": "Annual Security Audit 2025.pdf",
"Size": 512000,
"UploadDate": "2025-08-15T09:30:00.000Z",
"UploadedBy": "John Doe",
"Status": "Completed",
"Summary": "This audit report provides a comprehensive review of the organization's security controls, highlights areas of improvement, and includes recommendations for mitigating identified risks. The assessment covers network infrastructure, endpoint protection, and incident response readiness.",
"Date": "2025-08-15T09:30:00.000Z",
"DateSource": "Audit Completion Date",
"ValidUntilDate": "2026-07-30",
"Type": "Audit Report",
"IssuerName": "CyberTrust Solutions",
"StatusMessage": "Document parsing error.",
"OrganizationName": "Acme Corp",
"Issues": [
{
"Id": "SEC-2025-001",
"Description": "Unpatched critical vulnerability detected in web server.",
"Details": "The Apache server running on 10.0.0.5 is missing security patch CVE-2025-1234. Immediate remediation is recommended."
}
]
}
]