# Retrieve All Patch Details (Patch-System Mapping) Retrieves the patch-to-system mapping report showing installation status of patches across all applicable systems. ## Endpoint `GET /dcapi/patch/reports/allPatchDetails` ## Request ### Request URL ```text https://{server-hostname}:8383/dcapi/patch/reports/allPatchDetails ``` ### Scope ```text PatchMgmt.READ ``` ### Header ```text Authorization: d92d4xxxxxxxxxxxxx15f52 ``` ### Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/patch/reports/allPatchDetails \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### 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 | ### HTTP Code 500 Response body: `application/json` | Parameter | Type | Description | |---|---|---| | 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 | HTTP Code | |---| | 200 | | 500 | ### Sample Response: HTTP 200 All patch details ```json { "metadata": { "limit": 25, "page": 1 }, "totalRecords": "1", "messageResponse": [ { "agent_version_transform": "10.0.337.L", "resource_name_transform": "LinuxMachine1", "deployer_first_name": null, "sqnumber": "ALAS-2024-2540", "install_error_code": null, "os_language": "0", "patch_install_status_label_transform": "--", "bulletin_id": "ALAS-2024-2540", "update_name": "Third Party Updates", "image_name": "images/approved_icon.gif", "patch_size": "112504", "patch_description_transform": "Libguestfs update (ELSA-2024-6964)", "patch_uninstall_status": "0", "service_pack": "--", "patch_updated_time_transform": "Feb 10, 2026 03:47 PM", "os_name_transform": "Ubuntu 24.10", "resourcemacip_resource_id": "16222000000277697", "patch_size_transform": "768.04 KB", "domain_netbios_name_transform": "ZOHOCORP", "patch_status": "211", "patch_uninstall_status_transform": "Not Supported", "patch_install_status_image": null, "patch_id": "2803597", "patch_name": "java-1.8.0-openjdk-accessibility-1.8.0.412.b08-1.amzn2.0.1.x86_64.rpm", "update_name_transform": "Third Party Updates", "branch_office_name_transform": "Default Remote Office", "patch_description": "java-1.8.0-openjdk Security Update (ALAS-2024-2540)", "agent_last_contact_time_transform": "Mar 3, 2025 06:20 PM", "i18n_transform": "Multilingual", "os_platform": "3", "agent_logged_on_users": "Device Control Manager", "patch_name_transform": "libguestfs-1.44.0-9.0.2.module+el8.9.0+90052+d3bf71d8.x86_64.rpm", "sqnumber_transform": "ELSA-2024-6964", "vendor_name": "Openjdk-8", "superceded_by": "NA", "i18n": "Multilingual", "label_transform": "Approved", "config_id": null, "user_id": "16222000000226118", "deploy_remarks_args": null, "friendly_name_transform": "LinuxMachine1", "patch_released_time_transform": "Sep 24, 2024", "installed_time": null, "superceded_by_transform": "NA", "collection_name": null, "computer_status_update_time": "1741006572973", "patch_affected_status_label_transform": "Missing", "deploy_remarks_transform": "--", "patch_affected_status_image": "images/success.gif", "collection_name_transform": "--", "branch_office_name": "localOfficeOne", "patch_updated_time": "1770718649504", "installed_time_transform": "--", "agent_last_contact_time": "1741006571814", "bulletin_id_transform": "ELSA-2024-6964", "domain_netbios_name": "linuxosgroup", "patch_supported_time_transform": "Sep 27, 2024", "deploy_remarks": null, "platform": "3", "first_name_transform": "DC-SYSTEM-USER", "patch_released_time": "1715193000000", "patch_id_transform": "1633087", "ip_address_transform": "210.31.213.181", "mac_address": "d4:30:b2:a6:54", "platform_name": "Linux", "severity_transform": "Moderate", "patch_type": "2", "first_name": "DC-SYSTEM-USER", "affected_patch_status": "201", "severity": "1", "friendly_name": "LinuxMachine6", "pmseverity_name": "Low", "managedcomputer_resource_id": "16222000000277697", "deployer_first_name_transform": "--", "agent_logged_on_users_transform": "Application Control Manager", "config_id_transform": "--", "deployment_status": null, "ip_address": "53.180.5.58", "label": "dc.common.APPROVED", "severity_name": "dc.common.LOW", "vendor_name_transform": "virt", "service_pack_transform": "--", "patch_supported_time": "1717830298631", "agent_version": "10.0.337.L", "patch_install_status_label": null, "patch_affected_status_label": "dc.common.INSTALLED", "mac_address_transform": "d7:36:b5:a0:02", "agent_last_bootup_time": "1450070085000", "os_name": "CentOS 7", "resource_id": "16222000000277697", "computer_live_status": "3", "resource_name": "LinuxMachine6" } ], "totalPages": 40, "Links": { "next": "/dcapi/patch/reports/allPatchDetails?page=2&pageLimit=25", "prev": null }, "status": "success" } ``` ### Sample Response: HTTP 500 Server-side error ```json { "error_description": "dc.rest.api_internal_error", "error_code": "INTERNAL_ERROR" } ``` ## Rate Limits ![ ](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.