# Retrieve Missing Patches Across Managed Systems Retrieves a paginated list of patches that are missing (not installed) across managed systems, including severity, download status, and affected system counts. **This API endpoint is deprecating soon** ## Endpoint GET `/api/1.4/patch/missingpatches` ## Request ### Request URL `https://{server-hostname}:8383/api/1.4/patch/missingpatches` ### Scope `PatchMgmt.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Sample Request ```curl curl --request GET \ --url https://appdomain/api/1.4/patch/missingpatches \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body — `application/json` - JSON object - **message_type** (`string`): Value: missingpatches - **message_response** (`JSON object`): Paginated missing patches data - **message_version** (`string`): API version: 1.0 - **status** (`string`): Operation status: success - **response_code** (`string`): Response code: 200 ### Possible Response Codes - **200** (`HTTP code`) ### Sample Response: HTTP 200 Paginated missing patches ```json { "response_code": 200, "message_type": "missingpatches", "message_response": { "total": 1614, "missingpatches": [ { "severity": 1, "patch_id": 309232, "patch_name": "FileZilla_3.41.2_win32-setup.exe", "patch_description": "FileZilla Client (3.41.2)", "vendor_name": "Tim Kosse", "superceded_by": "NA", "failed": 2, "bulletin_id": "TU-058", "update_name": "Third Party Updates", "patch_noreboot": 1, "patch_released_time": 1552971857000, "patch_size": 7917152, "patch_uninstall_status": 1, "missing": 5, "platform_name": "Windows" } ], "limit": 25, "page": 1 }, "message_version": "1.0", "status": "success" } ``` ## 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.