Lists managed computers available for JIT policy assignment

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

Returns a paginated list of managed computers with their computerID, platformID, computerName, and friendlyComputerName.

Request URL

https://{serverurl}/dcapi/appctrl/computerresources

Scope

DesktopCentralCloud.AppControl.READCopied!

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptsstringMandatory
application/jsonapplication/jsonCopied!

- Query Parameters

platformIDstringOptional

Platform ID (1=Windows, 2=Mac)

searchStrstringOptional

Search string to filter computers

startIndexintegerOptional

Pagination start index

limitlongOptional

Maximum number of results to return

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomains/dcapi/appctrl/computerresources \
  --header 'Accepts: application/json' \
  --header 'Authorization: Zoho-oauthtoken  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
computersJSON Array

Array of computer resources available for policy deployment

Show Sub-Attributes
JSON Object
Show Sub-Attributes
computerIDlong

Resource ID of the computer

platformIDinteger

Platform ID (1=Windows, 2=Mac)

computerNamestring

System name of the computer

friendlyComputerNamestring

User-friendly display name of the computer

totalCountlong

Total number of computer resources matching the filter

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

List of computer resources with IDs and names

Copied!
  {
    "totalCount": 1,
    "computers": [
      {
        "computerID": 605,
        "friendlyComputerName": "AndrewLasch",
        "computerName": "AndrewLasch",
        "platformID": 1
      }
    ]
  }
                
Show full

Duration: 1 minute | Threshold: 200 | 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.