# Returns computer resources for temporary access Returns computer resources for temporary access targeting. Supports pagination and search. ## Endpoint **GET** `/dcapi/device/computerresources` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/device/computerresources` ### Scope `DeviceControl.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Content-Type** (string, mandatory): `application/json` ### Sample Request ```bash curl --request GET \ --url https://appdomain/dcapi/device/computerresources \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/json' ``` ## Response Parameters ### HTTP code 200 #### Response Body — application/json - JSON object - **computerresource** (JSON array): List of computer resource records ### HTTP code 500 #### Response Body — application/json - JSON object - **errorCode** (string): Error code identifying the type of error - **errorMsg** (string): Human-readable error message ## Possible Response Codes - **200** — HTTP code - **500** — HTTP code ## Sample Responses ### HTTP 200 Computer resources response ```json { "computerresource": [ { "resourceID": "111301", "domainName": "ZOHOCORP", "resourceName": "User-PC", "platformID": 1, "friendlyName": "User-PC" } ] } ``` ### HTTP 500 Internal server error ```json { "errorCode": "INTERNAL_ERROR", "errorMsg": "Internal Server Error!" } ``` ## Rate Limits ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **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.