# 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://{server-hostname}:8383/dcapi/patch/reports/downloadedPatches` ### Scope `PatchMgmt.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/patch/reports/downloadedPatches \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### 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 ### 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 ### Possible Response Codes - **200** — HTTP code - **500** — HTTP code ### Sample Response: HTTP 200 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" } ``` ### 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.