System Misconfigurations and Affected System Details
This API provides the list of available system misconfigurations in all computers.
- Functionality
- Retrieve the list of computers that have system misconfigurations.
- HTTP Method
- GET
- API URI
- /dcapi/threats/systemreport/systemmisconfigurations
- Scope
- DesktopCentralCloud.VulnerabilityMgmt.READ
- Filters
- resource_id={Numeric}:
Filters systems based on the resource ID provided. Refer to this page to fetch the resource id.
misconfigid={Numeric}:
Filters systems based on the misconfiguration ID provided.
updated_time={Numeric}:
Filters systems based on the updated time provided.
misconfig_status={String}:
Filters systems based on the provided misconfiguration status.
global_gpo={String}:
Filters systems based on the misconfiguration global GPO provided.
- Display preferences
- page={Numeric}:
Displays the content of the provided page number.
pageLimit={Numeric}:
Displays the provided number of computers per page.
Response Data
{ "metadata": { "pageLimit": 30, "totalRecords": "1", "totalPages": 1, "links": { "next": null, "prev": null }, "page": 1 }, "response_code": 200, "message_type": "systemreport", "message_response": { "systemreport": [ { "systemmisconfigurations": [ { "updated_time": "1704451505976", "misconfig_status": "open", "misconfigid": "6", "global_gpo": "not applied" }, { "updated_time": "1704451505976", "misconfig_status": "open", "misconfigid": "7", "global_gpo": "not applied" } ], "resource_id": "304" } ] }, "status": "success" }