Retrieves the gateway and file transfer port settings for on-premise tool connections

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

Returns the current gateway port settings including SSL and non-SSL ports for remote control and file transfer connections.

Endpoints

Request URL

https://{server-hostname}:8383/dcapi/tools/portSetting

Request Parameters

- Request Headers

AcceptstringMandatory
application/jsonapplication/jsonCopied!

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/dcapi/tools/portSetting \
  --header 'Accept: application/json'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
gatewaySSLPortinteger

Gateway SSL port for remote control connections

gatewayNonSSLPortinteger

Gateway non-SSL port for remote control connections

ftSSLPortinteger

File transfer SSL port

ftNonSSLPortinteger

File transfer non-SSL port

useSSLboolean

Whether SSL is enabled for gateway connections

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Copied!
  {
    "gatewayNonSSLPort": 80,
    "ftSSLPort": 8443,
    "ftNonSSLPort": 8020,
    "gatewaySSLPort": 443,
    "useSSL": true
  }
                
Show full

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.