3. New API Endpoint for Informational Findings
A new API feature has been introduced to provide access to informational findings upon client request.
This enhancement improves data visibility, integration options, and reporting capabilities across Enterprise, Third-Party, and Portfolio
The purpose of this new endpoint is to allow authorized users and integrated systems to retrieve informational findings (i.e., non-critical observations or advisories identified during assessments) directly from the platform.
This enables better analysis, automation, and reporting of informational-level insights that were previously accessible only through the UI.
Available Endpoints
/api/v1/vulnerability/infrastructure/info/id/
/api/v1/vulnerability/application/info/id/
Example Response
{
"companyId": "12345",
"entityType": "Enterprise",
"page": 1,
"totalPages": 5,
"findings": [
{
"findingId": "INF-001",
"category": "Configuration Advisory",
"description": "Default SNMP community string detected",
"severity": "Informational",
"dateIdentified": "2025-10-25"
}
]
}
Parameters
- companyId – This is a required path parameter. It represents the unique identifier of the company, third party, or portfolio for which the informational findings are being requested.
- page – This is an optional query parameter. It can be used when there is a high number of records to retrieve results in smaller, paginated sets. The parameter accepts numeric values (for example, ?page=1, ?page=2, etc.).
When the page parameter is not provided, the API returns the first page of results by default.
Benefits
- Enables automated retrieval of informational findings for reporting or integration with external tools.
- Reduces manual data extraction from reports.
- Supports scalable pagination for large result sets.
- Consistent data access across Infrastructure and Application vulnerability modules.