# Retrieve Specified Patch Details Deprecating soon Retrieves detailed audit-level information about a specific patch installation status across all applicable systems. **This API endpoint is deprecating soon** ## Endpoints GET `/api/1.4/patch/patchdetails` ## Request URL `https://{server-hostname}:8383/api/1.4/patch/patchdetails` ## Scope `PatchMgmt.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Sample Request ```curl curl --request GET \ --url https://appdomain/api/1.4/patch/patchdetails \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP code 200 #### Response Body — application/json - JSON Object - **message_type** (`string`): Value: patchdetails - **message_response** (`JSON Object`): Paginated patch-level audit data per system - **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 Patch details with system-level status ```json { "response_code": 200, "message_type": "patchdetails", "message_response": { "total": 5, "limit": 25, "patchdetails": [ { "severity": 3, "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", "superceded_by": "NA", "ip_address": "172.24.143.191", "bulletin_id": "MS18-JAN9", "update_name": "Security Updates", "patch_released_time": 1515715200000, "patch_size": 0, "resource.domain_netbios_name": "DOMAIN", "service_pack": "Windows Server 2012 R2 Gold (x64)", "resource_id": 50924, "os_name": "Windows Server 2012 R2 Standard Edition (x64)", "pmseverity.name": "Important" } ], "page": 1 }, "message_version": "1.0", "status": "success" } ``` ## API Rate Limit **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.