# Adds computers to the user confirmation exclusion list for remote control Adds the specified computers to the exclusion list so that remote control sessions to these machines bypass the end-user confirmation prompt. Accepts a JSON body containing an array of resource IDs. ## Endpoint `PUT /dcapi/tools/remoteControl/addComputers` ## Request URL `https://`[*{serverurl}*](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)`/dcapi/tools/remoteControl/addComputers` ## Scope `DesktopCentralCloud.RemoteControl.UPDATE` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers | Header | Type | Requirement | Value | |---|---|---|---| | Accept | string | Mandatory | `application/computersAddedInfo.v1+json` | | Content-Type | string | Mandatory | `application/addComputersInfo.v1+json` | ### Request Body `application/json` | Attribute | Type | Requirement | Description | |---|---|---|---| | computerList | JSON Array | Optional | | ### Sample Request ```curl curl --request PUT \ --url https://appdomains/dcapi/tools/remoteControl/addComputers \ --header 'Accept: application/computersAddedInfo.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/addComputersInfo.v1+json' \ --data '{}' ``` ### Sample Request Body ```json { "computerList": [ 101, 105, 202 ] } ``` ## Response Parameters ### HTTP Code 200 Response Body: `application/json` | Attribute | Type | Description | |---|---|---| | status | string | Result of the operation: success or failure | | addedCount | integer | Number of computers successfully added to the exclusion list | ### Sample Response: HTTP 200 ```json { "addedCount": 3, "status": "success" } ``` ## Possible Response Codes | Code | Type | |---|---| | 200 | HTTP code | ## Rate Limits ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 30 | **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.