# Removes one or more computers from the user confirmation exclusion list for remote control Removes the specified computers (by resource IDs) from the user confirmation exclusion list. After removal, remote control sessions to these computers will again require end-user confirmation if the global prompt setting is enabled. Accepts a JSON body containing an array of resource IDs. ## Endpoint `DELETE /dcapi/tools/remoteControl/excludeComputers` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/tools/remoteControl/excludeComputers` ### Scope `RemoteControl.DELETE` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** (`string`, Mandatory): `application/json` #### Request Body `application/json` - `JSON Object` - **computerList** (`JSON Array`, Optional) ### Sample Request ```curl curl --request DELETE \ --url https://appdomain/dcapi/tools/remoteControl/excludeComputers \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \ --header 'content-type: application/json' \ --data '{"computerList":[101,105,202]}' ``` ### Sample Request Body ```json { "computerList": [ 101, 105, 202 ] } ``` ## Response ### Response Parameters #### HTTP Code 200 Response body: `application/json` - `JSON Object` - **status** (`string`): Result of the operation: success or failure ### Possible Response Codes - **200** (`HTTP code`) ### Sample Response: HTTP 200 ```json { "status": "success" } ``` ## API Rate Limits ![Help icon](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.