# Retrieve Latest Patches Report Retrieves a report of the most recently released patches. ## Endpoints `GET /dcapi/patch/reports/latestPatches` ## Request URL https://[*{serverurl}*](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/patch/reports/latestPatches ## 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 | | **platform** | long | Optional | 1: Windows, 2: Mac, 3: Linux | | **patchId** | long | Optional | Specific patch ID filter | | **severity** | long | Optional | 0: Unrated, 1: Low, 2: Moderate, 3: Important, 4: Critical | | **approvalStatus** | long | Optional | 211: Approved, 0: Not Approved, 212: Declined | | **kbnumber** | string | Optional | KB number filter | | **patchStatus** | string | Optional | 201: Installed, 202: Missing, 203: Failed | | **patchTypeParam** | string | Optional | 0: Security Updates, 1: Critical Updates, 2: Third-Party Updates, 3: Updates, 4: Definition Updates, 5: Service Packs, 6: Feature Packs, 7: Rollups, 8: Tools, 9: Driver, 10: Optional Updates, 11: Preview Rollups, 12: BIOS | | **cveId** | string | Optional | CVE identifier filter | | **bulletinId** | string | Optional | Security bulletin 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/latestPatches \ --header 'Authorization: Zoho-oauthtoken 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 latest patch 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 | Code | Type | |---|---| | **200** | HTTP code | | **500** | HTTP code | ## Sample Response: HTTP 200 Latest patches ```json { "metadata": { "limit": 25, "page": 1 }, "totalRecords": "23569", "messageResponse": [ { "update_id": "2", "patch_download_status_label": null, "pmpatchtype_status": "0", "patch_lang": "0", "patch_noreboot_transform": "May Require", "sqnumber": "12.0.35.620", "patch_patchid_transform": "343852", "platform_name_transform": "Windows", "bulletin_id": "TU-1184", "patch_noreboot": "1", "update_name": "Third Party Updates", "patch_download_status_image": null, "patch_size": "101543936", "patch_description_transform": "Razor SQL (x64) (10.6.4)", "patch_uninstall_status": "0", "download_status": null, "patch_updated_time_transform": "Feb 10, 2026 03:47 PM", "patch_size_transform": "94.25 MB", "patch_status": "211", "patch_uninstall_status_transform": "Not Supported", "patch_id": "343878", "patch_name": "setup_think-cell_35620.msi", "update_name_transform": "Third Party Updates", "patch_description": "Think-cell 12 (12.0.35.620) (Manual Upload Required)", "patchdetails_patchid": "343878", "patch_name_transform": "razorsql10_6_4_setup_x64.exe", "sqnumber_transform": "10.6.4", "vendor_name": "think-cell Operations GmbH", "superceded_by": "NA", "label_transform": "Approved", "patch_patchid": "343878", "patch_released_time_transform": "Dec 12, 2024", "pmpatchlocation_patchid": "343878", "patch_updated_time": "1770718649504", "patch_updated": "1734008431000", "is_superceded": "0", "bulletin_id_transform": "TU-911", "patch_supported_time_transform": "Dec 12, 2024", "platform": "1", "first_name_transform": "DC-SYSTEM-USER", "patch_released_time": "1734006889000", "platform_name": "Windows", "severity_transform": "Moderate", "patch_type": "2", "first_name": "DC-SYSTEM-USER", "severity": "2", "pmseverity_name": "Moderate", "patch_remarks": "", "label": "dc.common.APPROVED", "severity_name": "dc.common.MODERATE", "vendor_name_transform": "Richardson Software, LLC", "patch_supported_time": "1734006889000", "customer_id": "16222000000226138", "newpatchinfo_patchid": "343878", "status_image": "images/approved_icon.gif" } ], "totalPages": 943, "Links": { "next": "/dcapi/patch/reports/latestPatches?page=2&pageLimit=25", "prev": null }, "status": "success" } ``` ## Sample Response: HTTP 500 Server-side error ```json { "error_description": "dc.rest.api_internal_error", "error_code": "INTERNAL_ERROR" } ``` ![ ](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.