Retrieve Legacy Windows 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 legacy Windows versions (e.g., Windows 7, Server 2008) that have reached end-of-life.

Request URL

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

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 ID filter (comma-separated)

operatingSystemstringOptional

Operating system name filter

ESUActivationStatusstringOptional

na: Not Applicable, active: Activated, notActive: Not Activated

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/dcapi/patch/reports/WinLegacyEoLSystemsView \
  --header 'Authorization: Zoho-oauthtoken  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 legacy Windows 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

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 HTTP Status Codes

200HTTP code
500HTTP code

Sample Response: HTTP 200

Legacy Windows EoL systems

Copied!
  {
    "metadata": {
      "limit": 25,
      "page": 1
    },
    "totalRecords": 2,
    "messageResponse": [
      {
        "LoggedOnUsers": "Administrator",
        "OperatingSystem": "Windows XP Professional",
        "EsuActivationStatus": "Not Applicable",
        "Owner": "--",
        "DeviceFriendlyName": "WinMachine10",
        "ComputerName": "WinMachine10",
        "ServicePack": "Windows XP x64 Edition Service Pack 2",
        "IpAddress": "3.59.54.70",
        "Domain": "linuxosgroup",
        "RemoteOffice": "localOfficeOne"
      },
      {
        "LoggedOnUsers": "Browser Security Manager",
        "OperatingSystem": "Windows 7 Professional Edition (x64)",
        "EsuActivationStatus": "Not Applicable",
        "Owner": "--",
        "DeviceFriendlyName": "WinMachine4",
        "ComputerName": "WinMachine4",
        "ServicePack": "Windows 7 SP1 (x64)",
        "IpAddress": "252.148.93.191",
        "Domain": "ZOHOCORP",
        "RemoteOffice": "Default Remote Office"
      }
    ],
    "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.