Help Center
Choose product document...
Veeam Availability Console 2.0 [Archived]
RESTful API Reference

Get Backup Servers

You can get a representation of a collection of backup servers in tenants' and service provider's infrastructures.

Request

To get a representation of all backup servers in tenants' and service provider's infrastructures, send the GET HTTPS request to the URL of the /BackupServers collection.

HTTPS Request

GET https://<Availability-Console>:1281/v2/BackupServers

Request Headers

The request header must contain the authorization token for the current logon session.

Response

The server returns the following response to the client.

Response Code

A successfully completed operation returns response code 200 Success.

Response Headers

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

Header

Description

Content-length

The length of the response body.

Content-type

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

Response Body

In the response body, Veeam Availability Console returns a representation of the /BackupServers collection.

Example Get Backup Servers

The following request returns a representation of all backup servers in tenants' and service provider's infrastructures.

Request:

GET https://localhost:1281/v2/BackupServers

 

Request Header:

Authorization: Bearer <Access-Token>

 

Response Code:

200 Success

 

Response Body:

[

 {

   "id": 2,

   "name": "BACKUP02",

   "_links": {

     "self": {

       "href": "https://vac:1281/v2/backupServers/2"

     },

     "backupRepositories": [

       {

         "href": "https://vac:1281/v2/backupRepositories/2"

       },

       {

         "href": "https://vac:1281/v2/backupRepositories/3"

       }

     ],

     "jobs": [

       {

         "href": "https://vac:1281/v2/jobs/2"

       },

       {

         "href": "https://vac:1281/v2/jobs/1"

       },

       {

         "href": "https://vac:1281/v2/jobs/3"

       }

     ]

   }

 },

 {

   "id": 3,

   "name": "BACKUP01",

   "_links": {

     "self": {

       "href": "https://vac:1281/v2/backupServers/3"

     },

     "backupRepositories": [

       {

         "href": "https://vac:1281/v2/backupRepositories/5"

       },

       {

         "href": "https://vac:1281/v2/backupRepositories/6"

       }

     ],

     "jobs": [

       {

         "href": "https://vac:1281/v2/jobs/7"

       },

       {

         "href": "https://vac:1281/v2/jobs/8"

       },

       {

         "href": "https://vac:1281/v2/jobs/6"

       },

       {

         "href": "https://vac:1281/v2/jobs/9"

       },

       {

         "href": "https://vac:1281/v2/jobs/10"

       },

       {

         "href": "https://vac:1281/v2/jobs/5"

       }

     ]

   }

 }

]

Veeam Large Logo

Deployment Guide

Migration Guide

Administrator Guide for Service Providers

User Guide for Service Providers

Evaluator's Guide for Service Providers

Administrator Guide for Enterprises

User Guide for Enterprises

Evaluator's Guide for Enterprises

RESTful API Reference