# Lists managed computers available for JIT policy assignment Returns a paginated list of managed computers with their computerID, platformID, computerName, and friendlyComputerName. ## Endpoints `GET /dcapi/appctrl/computerresources` ## Request URL `https://{server-hostname}:8383/dcapi/appctrl/computerresources` ## Scope `AppControl.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Sample Request ```curl curl --request GET \ --url https://appdomain/dcapi/appctrl/computerresources \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## 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 } ] } ``` ## Rate Limit ![Help](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.