# List Patch Status Across Computers This API provides detailed information about the installation status of a given patch on all applicable computers within the Endpoint Central environment. **This API endpoint is deprecating soon** ## Endpoints `GET /api/1.4/patch/allpatchdetails` ## Request ### Request URL https://[*{serverurl}*](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/api/1.4/patch/allpatchdetails ### Scope `DesktopCentralCloud.PatchMgmt.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Query Parameters | Parameter | Type | Required | Description | |---|---|---|---| | patchid | string | Optional | Filter for patch with a particular id | | bulletinid | string | Optional | | | severityfilter | integer | Optional | 0: Unrated — no severity assigned, 1: Low — minimal impact, 2: Moderate — average impact, 3: Important — significant impact, 4: Critical — high impact or security risk | | patchstatusfilter | integer | Optional | 201: Installed — patch is already installed, 202: Missing — patch is not installed | | domainfilter | string | Optional | Get domain list from api/1.4/desktop/serverproperties | | platformfilter | string | Optional | Windows/Mac/Linux | | branchofficefilter | string | Optional | Get branch office list from api/1.4/desktop/serverproperties | | customgroupfilter | string | Optional | Get Custom Group list from api/1.4/desktop/serverproperties | | searchvalue | string | Optional | | | searchcolumn | string | Optional | | | searchtype | string | Optional | | | sortorder | string | Optional | | | orderby | string | Optional | | | pagelimit | string | Optional | Number of records per page. | | page | integer | Optional | Current page number for pagination. | | customerid | long | Optional | | | languagefilter | integer | Optional | | | patchtypefilter | integer | 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 | | deploymentstatusfilter | integer | Optional | | ### Sample Request ```curl curl --request GET \ --url https://appdomains/api/1.4/patch/allpatchdetails \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### 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 patch-system mapping 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 | ### Possible Response Codes | Code | Type | |---|---| | 200 | HTTP code | ### Sample Response: HTTP 200 Paginated list of patch status across all applicable systems ```json { "response_code": 200, "message_type": "allpatchdetails", "message_response": { "total": 5, "allpatchdetails": [ { "severity": 3, "branch_office_name": "Local Office", "patch_id": 23956, "resource.name": "COMPUTER-01", "patch_name": "SQLPreReqHandler_KB4057116_x64.exe", "patch_description": "Security update for SQL Server 2012 SP4 x64 (KB4057116)", "vendor_name": "Microsoft", "deployment_status": "--", "superceded_by": "NA", "ip_address": "172.24.143.191", "bulletin_id": "MS18-JAN9", "update_name": "Security Updates", "patch_released_time": 1515715200000, "patch_size": 0, "affectedpatchstatusdefn.label": "dc.common.INSTALLED", "agent_version": "10.0.267.W", "resource.domain_netbios_name": "DOMAIN", "service_pack": "Windows Server 2012 R2 Gold (x64)", "patch_uninstall_status": 0, "os_name": "Windows Server 2012 R2 Standard Edition (x64)", "patch_type": 0, "resource.resource_id": 50924, "pmseverity.name": "Important", "patch_status": 211 } ], "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.