Proxy properties

All proxy properties are defined within the proxy object in theItential Platform service instance configuration for the adapter.

Properties

PropertyTypeRequiredDescription
enabledbooleanYesDetermines whether requests to the external system must pass through a proxy.
hoststringYes (if enabled)Hostname of the proxy server.
portintegerYes (if enabled)Port of the proxy server.
protocolenumNo → httpProtocol to use for the proxy connection. Supported values: http, https, socks4, socks5.
usernamestringNoUsername for proxy authentication.
passwordstringNoPassword for proxy authentication.

Example

This example routes requests through a proxy server at https://myproxy.xyz.com:443 using proxy-specific credentials.

1"proxy": {
2 "enabled": true,
3 "host": "myproxy.xyz.com",
4 "port": 443,
5 "protocol": "https",
6 "username": "Itential",
7 "password": "letmein"
8}