Retrieve Reboot Pending Systems

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

Retrieves systems that are pending reboot after patch installation.

Request URL

https://{server-hostname}:8383/dcapi/patch/reports/rebootPendingSystems

Scope

PatchMgmt.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/dcapi/patch/reports/rebootPendingSystems \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'
Show full

Response Parameters

- HTTP code 200

Response Body - application/json
JSON object
Hide Sub-Attributes
LinksJSON object

Pagination links for next and previous pages

Show Sub-Attributes
nextstring

URL for the next page of results, or null if on the last page

prevstring

URL for the previous page of results, or null if on the first page

messageResponseJSON array

Array of reboot pending system entries

Show Sub-Attributes
JSON object
Show Sub-Attributes
AgentTimeZonestring

Time zone of the agent (e.g., GMT-08:00)

AgentVersionstring

Version of the installed agent

ComputerNamestring

Name of the computer

DeploymentPolicystring

Deployment policy applied to the system

DeviceFriendlyNamestring

Friendly display name of the device

Domainstring

Domain name of the computer

Healthstring

System health status: Healthy, Vulnerable, Highly Vulnerable

IpAddressstring

IP address of the system

Languagestring

Language of the operating system

LastBootTimestring

Last boot time of the system

LastContactTimestring

Last time the agent contacted the server

LastContactedTimeWithDsstring

Last contacted time with distribution server, or --

LastPatchedTimestring

Last time a patch was applied, or --

Locationstring

Location of the system, or --

LoggedOnUsersstring

Currently logged on users

MacAddressstring

MAC address of the system

Notesstring

Admin notes, or --

OperatingSystemstring

Full operating system name and architecture

Ownerstring

Owner of the system, or --

OwnerEmailstring

Email of the system owner, or --

RebootPendingDuration(inDays)string

Duration the reboot has been pending

RebootPendingReasonstring

Reason the reboot is pending

RebootRequiredReasonstring

Reason a reboot is required

RemoteOfficestring

Remote office name

SearchTagstring

Search tag, or --

ServicePackstring

Service pack or OS version

TaskNamestring

Name of the deployment task

TaskTypestring

Type of deployment task

UpcomingForceRebootTimestring

Scheduled force reboot time

metadataJSON object

Pagination metadata

Show Sub-Attributes
limitstring

Number of records per page

pagestring

Current page number

statusstring

Operation result: success

totalPagesstring

Total number of pages available

totalRecordsstring

Total number of records matching the query

- HTTP code 500

Response Body - application/json
JSON object
Hide Sub-Attributes
error_codestring

Error code: INTERNAL_ERROR for server-side failures

error_descriptionstring

Localized error description: dc.rest.api_internal_error

Possible Response Codes

200HTTP code
500HTTP code

Sample Response: HTTP 200

Reboot pending systems

Copied!
  {
    "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"
  }
                
Show full

Sample Response: HTTP 500

Server-side error

Copied!
  {
    "error_description": "dc.rest.api_internal_error",
    "error_code": "INTERNAL_ERROR"
  }
                
Show full

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.