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

Rescanning Backup Proxy Servers

You can rescan backup proxy servers.

Request

POST https://<hostname>:4443/v6/Proxies/Rescan

Request Headers

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

Request Body

The request body must contain the following properties:

Property

Type

Description

proxies

string[]

Specifies the identification number of one or more backup proxy servers that you want to rescan. For more information on how to get backup proxy server identification number, see Getting Backup Proxy Servers.

Response

Response Codes

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.

Examples

Example 1

The example shows how to rescan the existing backup proxy servers.

Request:

POST https://abc.tech.local:4443/v6/Proxies/Rescan

 

Request Header:

Authorization: Bearer <Access-Token>

 

Request Body:

{

 "proxies": [

   {

     "id": "937f6e33-12cc-485c-9cf8-6164069f673b"

   }

 ]

}

 

Response:

200 OK