This is an archive version of the document. To get the most up-to-date information, see the current version.

Editing Internet Proxy Server Settings

You can edit internet proxy server settings.

Request

PUT https://<hostname>:4443/v6/InternetProxySettings

Request Headers

The request header must contain an authorization token of the current session.

Request Body

To edit the internet proxy settings, you need to enter in the request body the required properties with new values. The properties you omit will remain unchanged.

The request body must contain the following properties:

Property

Type

Description

hostName

string

Specifies a name of the internet proxy server.

port

integer

Specifies a port number which is used to connect to the internet proxy server.

The default port for connection to the internet proxy is 3128.

useAuthentication

boolean

Defines that Veeam Backup for Microsoft 365 will use an authentication credentials when connecting to the internet proxy server.

userName

string

Specifies the username for authentication with the internet proxy server.

userPassword

string

Specifies the username for authentication with the internet proxy server.

Response

The server returns the following response to the client.

Response Codes

A successfully completed operation returns a response code 200 OK.

Response Headers

The response to this request contains the following headers. The response may also include additional standard HTTPS headers.

Header

Description

Content-length

The length of the response body.

Content-type

The media type and syntax of the response body message: application/json; charset=utf-8

Response Body

None.

Example

The example shows how to update the internet proxy settings.

Request:

PUT https://abc.tech.local:4443/v6/InternetProxySettings

 

Request Header:

Authorization: Bearer <Access-Token>

 

Request Body:

{

 "useInternetProxy": true,

 "hostName": "internetproxyhost",

 "port": 3128,

 "useAuthentication": true,

 "userName": "administrator",

 "userPassword": "password"

}

 

Response:

200 OK