You can get a representation of а collection of all WAN Accelerators configured on service provider's and tenants' backup servers.
Request
To get a representation of all available WAN Accelerators, send the GET HTTPS request to the URL of the /WanAccelerators collection.
HTTP Request
GET https://<Availability-Console>:1281/v2/WanAccelerators |
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 /WanAccelerators collection.
Example
The following request returns all WAN Accelerators configured on service provider's and tenants' backup servers.
Request: GET https://localhost:1281/v2/WanAccelerators
Request Header: Authorization: Bearer <Access-Token>
Response Code: 200 Success
Response Body: [ { "id": "7eced22b-5e67-45e1-bc00-37e399903bed", "name": "BACKUP01", "_links": { "self": { "href": "https://vac.tech.local:1281/v2/wanAccelerators/7eced22b-5e67-45e1-bc00-37e399903bed" } } }, { "id": "bba77fe1-b5a9-4278-8cad-bd2c59455b0b", "name": "BACKUP02", "_links": { "self": { "href": "https://vac.tech.local:1281/v2/wanAccelerators/bba77fe1-b5a9-4278-8cad-bd2c59455b0b" } } }, { "id": "4512013c-376b-47db-8837-286399790ca8", "name": "VAC", "_links": { "self": { "href": "https://vac.tech.local:1281/v2/wanAccelerators/4512013c-376b-47db-8837-286399790ca8" } } } ] |