# Retrieve Detailed System-Level Patch Report Retrieves a detailed system-level patch report for a specific managed system. **This API endpoint is deprecating soon** ## Endpoint `GET /dcapi/patch/reports/systemReport` ## Request ### Request URL `https://{serverurl}/dcapi/patch/reports/systemReport` ### Scope `DesktopCentralCloud.PatchMgmt.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Query Parameters | Parameter | Type | Required | Description | |---|---|---|---| | **pageLimit** | integer | Optional | Number of records per page (default 25) | | **page** | integer | Optional | Page number to retrieve (1-based) | | **searchColumn** | string | Optional | Column name to search within | | **searchValue** | string | Optional | Value to search for in the specified column | | **patchStatus** | string | Optional | 201: Installed, 202: Missing, 203: Failed | | **approveStatus** | long | Optional | 211: Approved, 0: Not Approved, 212: Declined | | **platFormId** | long | Optional | 1: Windows, 2: Mac, 3: Linux | | **severity** | long | Optional | 0: Unrated, 1: Low, 2: Moderate, 3: Important, 4: Critical | | **resourceId** | long | Optional | Specific resource ID filter | | **isWebView** | string | Optional | Whether request is from web view | | **skipColumns** | string | Optional | Comma-separated column names to exclude from response | ### Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/patch/reports/systemReport \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### HTTP Code 200 Response body: `application/json` | Attribute | Type | Description | |---|---|---| | `Links` | JSON Object | Pagination links for next and previous pages | | `messageResponse` | JSON Array | Array of system report 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 | ### Sample Response: HTTP 200 System-level patch report ```json { "metadata": { "limit": 25, "page": 1 }, "totalRecords": "1", "messageResponse": [ { "update_id": "7", "patch_download_status_label": null, "patch_noreboot_transform": "May Require", "install_error_code": null, "bulletin_id": "MS22-JAN14", "patch_noreboot": "0", "update_name": "Rollups", "patch_download_status_image": null, "patch_description_transform": "ChengMing 3900 (1.26.0)", "patch_uninstall_status": "0", "download_status": null, "patch_updated_time_transform": "Feb 10, 2026 03:47 PM", "patch_status": "211", "patch_uninstall_status_transform": "Not Supported", "patch_install_status_image": null, "patch_id": "32830", "patch_name": "Ndp45-kb5008860-x64.exe", "update_name_transform": "BIOS", "patch_description": "KB5009719, 2022-01 Security and Quality Rollup for .NET Framework 4.5.2 for Windows 7 for x64 (KB5008860) (ESU)", "patch_name_transform": "ChengMing_3900_3901_01.26.00.exe", "vendor_name": "Microsoft", "superceded_by": "NA", "status_label": "dc.common.APPROVED", "config_id": null, "deploy_remarks_args": null, "patch_released_time_transform": "Nov 6, 2024", "installed_time": null, "collection_name": null, "affectedpatchstatus_resource_id": "16222000000271157", "deploy_remarks_transform": "--", "patch_affected_status_image": "images/success.gif", "collection_name_transform": "--", "patch_updated_time": "1770718649504", "installed_time_transform": "--", "bulletin_id_transform": "BI-001", "status_label_transform": "Approved", "patch_supported_time_transform": "Nov 7, 2024", "deploy_remarks": null, "platform": "1", "first_name_transform": "--", "patch_released_time": "1641924028000", "installpatchstatus_patch_id": null, "patch_id_transform": "1414963", "approveduser_first_name_transform": "DC-SYSTEM-USER", "platform_name": "Windows", "severity_transform": "Critical", "customerpatchstatus_patch_id": "32830", "patch_type": "7", "first_name": null, "affected_patch_status": "201", "severity": "3", "pmseverity_name": "Important", "deployment_status": null, "severity_name": "dc.common.IMPORTANT", "vendor_name_transform": "Dell", "patch_supported_time": "1641934828000", "patch_install_status_label": null, "patch_affected_status_label": "dc.common.INSTALLED", "approveduser_first_name": "DC-SYSTEM-USER", "resource_id": "16222000000271157", "customer_id": "16222000000226138", "installpatchstatus_resource_id": null, "status_image": "images/approved_icon.gif" } ], "totalPages": 1, "Links": { "next": null, "prev": null }, "status": "success" } ``` ### HTTP Code 500 Response body: `application/json` | Attribute | Type | Description | |---|---|---| | `error_code` | string | Error code: INTERNAL_ERROR for server-side failures | | `error_description` | string | Localized error description: dc.rest.api_internal_error | ### Sample Response: HTTP 500 Server-side error ```json { "error_description": "dc.rest.api_internal_error", "error_code": "INTERNAL_ERROR" } ``` ### Possible Response Codes | HTTP Code | |---| | 200 | | 500 | ## 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.