Retrieve Windows 10 End-of-Life 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 running Windows 10 versions that are reaching or have reached end-of-life.

Request URL

https://{serverurl}/dcapi/patch/reports/Win10EoLSystems

Scope

DesktopCentralCloud.PatchMgmt.READCopied!

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Query Parameters

pageLimitintegerOptional

Number of records per page (default 25)

pageintegerOptional

Page number to retrieve (1-based)

searchColumnstringOptional

Column name to search within

searchValuestringOptional

Value to search for in the specified column

domainstringOptional

Domain name filter

branchOfficestringOptional

Branch office name filter

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomains/dcapi/patch/reports/Win10EoLSystems \
  --header 'Authorization: Zoho-oauthtoken  d92d4xxxxxxxxxxxxx15f52'

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 Windows 10 EoL system entries

Show Sub-Attributes
JSON Object
Show Sub-Attributes
ComputerNamestring

Name of the computer

DeviceFriendlyNamestring

Friendly display name of the device

Domainstring

Domain name of the computer

EsuActivationStatusstring

ESU activation status: Activated, Not Activated, Not Applicable

IpAddressstring

IP address of the system

LoggedOnUsersstring

Currently logged on users

OperatingSystemstring

Full operating system name and architecture

Ownerstring

Owner of the system, or --

RemoteOfficestring

Remote office name

ServicePackstring

Service pack or OS version

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

Win10 EoL systems

Copied!
  {
    "metadata": {
      "limit": 25,
      "page": 1
    },
    "totalRecords": 2,
    "messageResponse": [
      {
        "LoggedOnUsers": "Guest",
        "OperatingSystem": "Windows 10 Professional Edition (x64)",
        "EsuActivationStatus": "Not Applicable",
        "Owner": "--",
        "DeviceFriendlyName": "WinMachine11",
        "ComputerName": "WinMachine11",
        "ServicePack": "Windows 10 Version 1511 (x64)",
        "IpAddress": "156.127.43.242",
        "Domain": "linuxosgroup",
        "RemoteOffice": "localOfficeOne"
      },
      {
        "LoggedOnUsers": "Administrator",
        "OperatingSystem": "Windows 10 Professional Edition (x64)",
        "EsuActivationStatus": "Not Applicable",
        "Owner": "--",
        "DeviceFriendlyName": "WinMachine5",
        "ComputerName": "WinMachine5",
        "ServicePack": "Windows 10 Version 21H2 (x64)",
        "IpAddress": "215.233.207.204",
        "Domain": "ZOHOCORP",
        "RemoteOffice": "localOfficeTwo"
      }
    ],
    "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.