GET /cspm/finding_changes_overview
This API returns a count of new, resolved, and modified findings detected within a specified date range on the scan accounts in your company.
Request
Format
GET /cspm/finding_changes_overview?from_date=<string>&to_date=<string>&severities=<string>&scans=<string>&scan_groups=<string>&rules=<string>&resources=<string>&system_compliance=<string>
Parameters
Parameter | Type | Optional | Description |
|---|---|---|---|
| String | No | The start date and time of the request interval, in ISO 8601 format. The |
| String | Yes | The end date and time of the request interval, in ISO 8601 format. If you do not include this parameter in the request, the current date and time are used by default. |
| Array of strings | Yes | Only return information for findings with the specified severity levels. You can enter multiple comma-separated values. Possible values: |
| Array of strings | Yes | Only return information for the specified scan account IDs. You can enter multiple comma-separated values. |
| Array of strings | Yes | Only return information for the specified scan group IDs. You can enter multiple comma-separated values. |
| Array of strings | Yes | Only return information for findings associated with the specified rule IDs. You can enter multiple comma-separated values. |
| Array of strings | Yes | Only return information for findings that involve the specified resource IDs. You can enter multiple comma-separated values. |
| Array of strings | Yes | Only return information for findings associated with the specified compliance standard IDs. You can enter multiple comma-separated values. |
Examples
Return information on changes for critical severity findings, recorded for the scan group with ID 27bd7e86-6569-46b7-9e1a-defe95******, within the interval from April 20, 2026, to April 28, 2026:
GET /cspm/finding_changes_overview?from_date=2026-04-20&to_date=2026-04-28&severities=critical&scan_groups=27bd7e86-6569-46b7-9e1a-defe95******
Response
Format
{
"data": {
"new_count": 48,
"resolved_count": 21,
"modified_count": 6
}
}Attributes
This endpoint returns an object containing multiple attributes:
Attribute | Type | Description |
|---|---|---|
| Object | Data on the finding changes |
| Integer | The total number of finding changes of the |
| Integer | The total number of finding changes of the |
| Integer | The total number of finding changes of the |
Example
{
"data": {
"new_count": 128,
"resolved_count": 36,
"modified_count": 9
}
}