# Lists managed computers available for JIT policy assignment Returns a paginated list of managed computers with their computerID, platformID, computerName, and friendlyComputerName. ## Endpoint `GET /dcapi/appctrl/computerresources` ## Request ### Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/appctrl/computerresources ### Scope `DesktopCentralCloud.AppControl.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accepts** `string` **Mandatory**: `application/json` #### Query Parameters - **platformID** `string` Optional: Platform ID (1=Windows, 2=Mac) - **searchStr** `string` Optional: Search string to filter computers - **startIndex** `integer` Optional: Pagination start index - **limit** `long` Optional: Maximum number of results to return ### Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/appctrl/computerresources \ --header 'Accepts: application/json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body: `application/json` - `JSON Object` - **computers** `JSON Array`: Array of computer resources available for policy deployment - **totalCount** `long`: Total number of computer resources matching the filter ### Possible Response Codes - **200** `HTTP code` ### Sample Response: HTTP 200 List of computer resources with IDs and names ```json { "totalCount": 1, "computers": [ { "computerID": 605, "friendlyComputerName": "AndrewLasch", "computerName": "AndrewLasch", "platformID": 1 } ] } ``` ## API Rate Limits ![help icon](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **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.