# Retrieve List of Downloaded Patches Retrieves the list of all patches that have been downloaded to Endpoint Central. ## Endpoint `GET /dcapi/patch/reports/downloadedPatches` ## Request ### Request URL https://[serverurl](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/patch/reports/downloadedPatches ### Scope `DesktopCentralCloud.PatchMgmt.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Query Parameters - **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 - **downloadStatus** `long` *(Optional)*: 221: Success, 220: In Progress, 223: Failed, 224: Yet to Download, 246: Window Not Reached - **approveStatus** `long` *(Optional)*: 211: Approved, 0: Not Approved, 212: Declined - **supersededStatus** `long` *(Optional)*: 0: Not Superseded, 1: Superseded - **language** `long` *(Optional)*: Language 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/downloadedPatches \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### HTTP Code 200 Response body: `application/json` - `JSON Object` - **metadata** `JSON Object`: Pagination metadata - **totalRecords** `string`: Total number of records matching the query - **messageResponse** `JSON Array`: Array of downloaded patch entries - **totalPages** `string`: Total number of pages available - **Links** `JSON Object`: Pagination links for next and previous pages - **status** `string`: Operation result: success #### Sample Response Downloaded patches list ```json { "metadata": { "limit": 25, "page": 1 }, "totalRecords": "1", "messageResponse": [ { "patch_download_status_label": "dc.common.SUCCESS", "patch_lang": "0", "os_language": "0", "platform_name_transform": "Windows", "bulletin_id": "TU-052", "patch_download_status_image": "images/download_success.png", "patch_size": "476432", "download_time_transform": "May 17, 2026 10:26 PM", "patch_description_transform": "HyperSnap 9 (9.6.1)", "status_id": null, "download_status": "221", "patch_size_transform": "14.04 MB", "patch_status": null, "how_to_url": null, "patch_id": "301087", "patch_name": "PreReqHandler.exe", "patch_description": "GIMP Prerequisite Handler", "i18n_transform": "Multilingual", "patchdetails_patchid": "301087", "patch_name_transform": "HS9Setup32DE.exe", "superceded_by": "NA", "i18n": "Multilingual", "status_label": null, "download_remarks_transform": "Already available in the server store", "error_kb_url": null, "patch_patchid": "301087", "patch_location_id": "1792660", "size": null, "patch_released_time_transform": "Dec 17, 2025", "superceded_by_transform": "NA", "download_time": "1779183057853", "pmpatchlocation_patchid": "301087", "patch_language": "0", "patch_updated": "1751356072000", "bulletin_id_transform": "TU-1292", "download_remarks_args": null, "status_label_transform": "Approved", "patch_supported_time_transform": "Dec 17, 2025", "platform": "1", "patch_released_time": "1385577000000", "patch_id_transform": "354364", "platform_name": "Windows", "customerpatchstatus_patch_id": null, "patch_type": "2", "patch_supported_time": "1397143425000", "patch_download_status_label_transform": "Success", "download_remarks": "desktopcentral.server.patchmgmt.patch_download_success", "customer_id": null, "remarks": null, "status_image": null } ], "totalPages": 1, "Links": { "next": null, "prev": null }, "status": "success" } ``` ### HTTP Code 500 Response body: `application/json` - `JSON Object` - **error_code** `string`: Error code: INTERNAL_ERROR for server-side failures - **error_description** `string`: Localized error description: dc.rest.api_internal_error #### Sample Response Server-side error ```json { "error_description": "dc.rest.api_internal_error", "error_code": "INTERNAL_ERROR" } ``` ### Possible Response Codes - **200**: HTTP code - **500**: HTTP code ## Rate Limits ![](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.