# Updates the global remote control configuration settings Saves the remote control configuration settings including viewer type, gateway SSL/non-SSL ports, WebSocket ports, connection policies, idle session timeout, screen blanking, and performance options. Accepts a JSON body with the full settings model. ## Endpoints `PUT /dcapi/tools/remoteControl/rdsSettings` ## Request ### Request URL https://[*{serverurl}*](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/dcapi/tools/remoteControl/rdsSettings ### Scope `DesktopCentralCloud.RemoteControl.UPDATE` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers | Name | Type | Requirement | Value | |---|---|---|---| | Accept | string | Mandatory | `application/remoteSettingsStatus.v1+json` | | Content-Type | string | Mandatory | `application/remoteSettingsInfo.v1+json` | #### Request Body `application/json` | Attribute | Type | Requirement | |---|---|---| | gatewaySSLPort | string | Optional | | gatewayNonSSLPort | string | Optional | | wanCompressionType | string | Optional | | nsPort | string | Optional | | serverPort | string | Optional | | sslServerPort | string | Optional | | ftSSLPort | string | Optional | | ftNonSSLPort | string | Optional | | lanCompressionType | string | Optional | | wsSSLPort | string | Optional | | nioPort | string | Optional | | useSSL | string | Optional | | isTomcatGatewayEnabled | boolean | Optional | | endUserDisconnect | string | Optional | | isMousePointer | string | Optional | | showQuickLaunch | string | Optional | | isCaptureAlphaBlending | string | Optional | | isDisableAeroTheme | string | Optional | | isDisableWallpaper | string | Optional | | isPermanentPrompt | string | Optional | | viewerType | string | Optional | | isShowBlankScreen | string | Optional | | isViewOnlyMode | string | Optional | | timeoutAction | string | Optional | | wsNonSSLPort | string | Optional | | isLockKeyboardMouse | string | Optional | | showAgentWindow | string | Optional | | isReasonBoxEnabled | string | Optional | | isDisableWallpapaer | string | Optional | | isPromptEnabled | string | Optional | | idleTimeout | integer | Optional | | isIdleSessionTimeout | string | Optional | | isMultiConnEnabled | boolean | Optional | | compressionType | string | Optional | | colorQuality | string | Optional | | branchOfficeID | string | Optional | | branchOfficeName | string | Optional | ### Sample Request ```curl curl --request PUT \ --url https://appdomains/dcapi/tools/remoteControl/rdsSettings \ --header 'Accept: application/remoteSettingsStatus.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/remoteSettingsInfo.v1+json' \ --data '{}' ``` ### Sample Request Body ```json { "gatewayNonSSLPort": 80, "wsSSLPort": 8383, "viewerType": "HTML5", "wsNonSSLPort": 8020, "endUserDisconnect": 1, "idleTimeout": 30, "isIdleSessionTimeout": 1, "isTomcatGatewayEnabled": true, "isMultiConnEnabled": true, "gatewaySSLPort": 443, "useSSL": 1 } ``` ## Response ### Response Parameters #### HTTP Code 200 Response body: `application/json` | Attribute | Type | Description | |---|---|---| | status | string | Result of the operation: success or failure | ### Possible Response Codes | Code | Type | |---|---| | 200 | HTTP code | ### Sample Response: HTTP 200 ```json { "status": "success" } ``` ## Rate Limits **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.