# Retrieve Applicable Systems Filter View Report Retrieves systems filtered by applicable patch criteria. ## Endpoint `GET /dcapi/patch/reports/systems` ## Request ### Request URL ```text https://{server-hostname}:8383/dcapi/patch/reports/systems ``` ### Scope ```text PatchMgmt.READ ``` ### Header ```text Authorization: d92d4xxxxxxxxxxxxx15f52 ``` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/patch/reports/systems \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response body: `application/json` | Parameter | Type | Description | |---|---|---| | `Links` | JSON object | Pagination links for next and previous pages | | `messageResponse` | JSON array | Array of system entries | | `metadata` | JSON object | Pagination metadata | | `status` | string | Operation result: success | | `totalPages` | string | Total number of pages available | | `totalRecords` | string | Total number of records matching the query | ### HTTP Code 500 Response body: `application/json` | Parameter | Type | Description | |---|---|---| | `error_code` | string | Error code: INTERNAL_ERROR for server-side failures | | `error_description` | string | Localized error description: dc.rest.api_internal_error | ### Possible Response Codes | HTTP Code | |---| | 200 | | 500 | ### Sample Response: HTTP 200 Systems report data ```json { "metadata": { "limit": 25, "page": 1 }, "totalRecords": 1, "messageResponse": [ { "Owner": "--", "TotalPatches": "11", "LastBootTime": "Dec 14, 2015 10:44 AM", "LastScan": "Mar 3, 2025 06:21 PM", "ScanRemarks": "Problem while genera...", "ShutdownStatus": "--", "Remarks": "--", "CriticalPatchCount": "2", "LastContactTime": "Mar 3, 2025 06:20 PM", "LastOperation": "--", "MissingDriverPatches": "0", "InstalledTpPatches": "9", "InstalledPatches": "0", "MissingMsPatches": "2", "InstalledBiosPatches": "0", "DeviceFriendlyName": "WinMachine13", "InstalledDriverPatches": "0", "LastActionInitiatedOn": "--", "ImportantPatchCount": "2", "MacAddress": "d4:67:b7:a0:13", "TotalTpPatches": "12", "ModeratePatchCount": "1", "MissingBiosPatches": "0", "FailedPatches": "0", "ComputerName": "WinMachine13", "ServicePack": "Windows 11 Version 21H2 (x64)", "Domain": "ZOHOCORP", "MissingTpPatches": "3", "OperatingSystem": "Windows 11 Enterprise for Virtual Desktops (x64)", "ProcessorArchitecture": "0", "InstalledMsPatches": "12", "LastPatchedTime": "--", "TimezoneOffset": "-480", "LastContactedTimeWithDs": "--", "RemoteOffice": "Default Remote Office", "TotalBiosPatches": "0", "ComputerLiveStatus": "1", "TotalMsPatches": "14", "Language": "Spanish", "ScanStatus": "228", "TotalDriverPatches": "0", "SearchTag": "--", "Notes": "--", "OwnerEmail": "--", "RebootRequiredStatus": "--", "Health": "Vulnerable", "OsPlatform": "Windows", "FqdnName": "WINMACHINE13.CSEZ.ZOHOCORPIN.COM", "LastSuccessfulScan": "--", "LoggedOnUsers": "Application Control Manager", "AdDescription": "--", "LowPatchCount": "0", "MissingPatches": "0", "IpAddress": "149.68.109.72", "DeploymentStatus": "208", "Location": "--" } ], "totalPages": 1, "Links": { "next": null, "prev": null }, "status": "success" } ``` ### Sample Response: HTTP 500 Server-side error ```json { "error_description": "dc.rest.api_internal_error", "error_code": "INTERNAL_ERROR" } ``` ## API Rate Limit ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 50 | **Lock period:** 5 minutes Duration - Time window for the threshold. Threshold - Number of API calls allowed within the specified duration. Lock Period - Wait time before consecutive API requests.