# 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 ### Request URL `https://{server-hostname}:8383/dcapi/tools/remoteControl/addComputers` ### Scope `RemoteControl.UPDATE` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` **Mandatory**: `application/computersAddedInfo.v1+json` - **Content-Type** `string` **Mandatory**: `application/addComputersInfo.v1+json` #### Request Body `application/json` - `computerList` `JSON Array` *Optional* ## Sample Request ```bash curl --request PUT \ --url https://appdomain/dcapi/tools/remoteControl/addComputers \ --header 'Accept: application/computersAddedInfo.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/addComputersInfo.v1+json' \ --data '{"computerList":[101,105,202]}' ``` ## Sample Request Body ```json { "computerList": [ 101, 105, 202 ] } ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body — `application/json` - `status` `string`: Result of the operation: success or failure - `addedCount` `integer`: Number of computers successfully added to the exclusion list ### Possible Response Codes - **200** `HTTP code` ## Sample Response: HTTP 200 ```json { "addedCount": 3, "status": "success" } ``` ## 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.