# Retrieve Reboot Pending Systems Retrieves systems that are pending reboot after patch installation. ## Endpoint **GET** `/dcapi/patch/reports/rebootPendingSystems` ## Request URL `https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/patch/reports/rebootPendingSystems` ## Scope `DesktopCentralCloud.PatchMgmt.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Query Parameters - **pageLimit** `integer` *(Optional)*: Number of records per page (default 25) - **page** `integer` *(Optional)*: Page number to retrieve (1-based) - **searchColumn** `string` *(Optional)*: Column name to search within - **searchValue** `string` *(Optional)*: Value to search for in the specified column - **platform** `string` *(Optional)*: 1: Windows, 2: Mac, 3: Linux (comma-separated) - **domain** `string` *(Optional)*: Domain name filter - **customGroup** `string` *(Optional)*: Custom group name filter - **branchOffice** `string` *(Optional)*: Branch office name filter - **operatingSystem** `string` *(Optional)*: Operating system name filter - **mobileView** `string` *(Optional)*: Set True for mobile-optimized view ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/patch/reports/rebootPendingSystems \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response Body — `application/json` - `JSON Object` - **Links** `JSON Object`: Pagination links for next and previous pages - **messageResponse** `JSON Array`: Array of reboot pending system 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` - `JSON Object` - **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 - **200** — HTTP code - **500** — HTTP code ## Sample Response: HTTP 200 Reboot pending systems ```json { "metadata": { "limit": 25, "page": 1 }, "totalRecords": 1, "messageResponse": [ { "OperatingSystem": "Windows 11 Professional Edition (x64)", "Owner": "--", "AgentVersion": "10.0.338.W", "RebootRequiredReason": "Some patches or software require a system restart to complete installation.", "AgentTimeZone": "GMT-08:00", "LastPatchedTime": "--", "LastContactedTimeWithDs": "--", "UpcomingForceRebootTime": "Feb 13, 2026 06:13 PM", "RemoteOffice": "Default Remote Office", "LastBootTime": "Dec 14, 2015 10:44 AM", "RebootPendingReason": "Awaiting user response to reboot prompt", "Language": "Multilingual", "LastContactTime": "Mar 3, 2025 06:20 PM", "TaskType": "Automate Patch Deployment", "SearchTag": "--", "DeploymentPolicy": "Allow user intervention (Skip deployment/reboot)", "Notes": "--", "OwnerEmail": "--", "DeviceFriendlyName": "WinMachine1", "Health": "Highly Vulnerable", "MacAddress": "d4:06:b6:a2:34", "LoggedOnUsers": "Administrator", "TaskName": "MyTask5", "ComputerName": "WinMachine1", "ServicePack": "Windows 11 Version 23H2 (x64)", "IpAddress": "118.40.20.170", "RebootPendingDuration(inDays)": "3 Day(s)", "Domain": "ZOHOCORP", "Location": "--" } ], "totalPages": 1, "Links": { "next": null, "prev": null }, "status": "success" } ``` ## Sample Response: HTTP 500 Server-side error ```json { "error_description": "dc.rest.api_internal_error", "error_code": "INTERNAL_ERROR" } ``` ## API Rate Limit ![](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.