# Retrieve All Downloaded Patches Deprecating soon Retrieve the details of all downloaded patches. **This API endpoint is deprecating soon** ## Endpoint `GET /api/1.4/patch/downloadedpatches` ## Request ### Request URL `https://{server-hostname}:8383/api/1.4/patch/downloadedpatches` ### Scope `PatchMgmt.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Sample Request ```curl curl --request GET \ --url https://appdomain/api/1.4/patch/downloadedpatches \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body: `application/json` - JSON Object - **message_type** (`string`): Value: downloadedpatches - **message_response** (`JSON Object`): Paginated downloaded patches data - **message_version** (`string`): API version: 1.4 - **status** (`string`): Operation status: success ### Sample Response: HTTP 200 Paginated list of downloaded patches ```json { "message_type": "downloadedpatches", "message_response": { "total": 2, "limit": 25, "page": 1, "downloadedpatches": [ { "patch_released_time": 1755541800000, "patch_size": 28887288, "download_time": 1757340476320, "patch_id": 1419469, "patch_name": "sp162871.exe", "patch_description": "HP Firmware update - 8D8A System (01.02.04)", "platform_name": "Windows", "download_status": 221, "superceded_by": "NA", "patch_type": 12, "bulletin_id": "BI-001" } ] }, "message_version": "1.4", "status": "success" } ``` ## Possible Response Codes - **200** (`HTTP code`) ## API Rate Limit ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 30 | **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.