Get WAN Accelerators
You can get a representation of a collection of all configured WAN accelerators.
Request
To get a representation of all available WAN accelerators, send the GET HTTPS request to the URL of the /wanAccelerators collection.
HTTP Request
Request Headers
The request header must contain the authorization token.
Response
The server returns the following response to the client.
Response Code
A successfully completed operation returns response code 200 OK.
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 Service Provider 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", "cloudConnectAgentUid": "698c8d3e-4710-46bf-b577-a370dc7d6385" "isClientsAccelerator": false "_links": { "self": { "href": "https://vac.tech.local:1281/v2/wanAccelerators/7eced22b-5e67-45e1-bc00-37e399903bed" } } }, { "id": "bba77fe1-b5a9-4278-8cad-bd2c59455b0b", "name": "BACKUP02", "cloudConnectAgentUid": "31670639-dc4c-4880-8f92-f746ade9123f" "isClientsAccelerator": false "_links": { "self": { "href": "https://vac.tech.local:1281/v2/wanAccelerators/bba77fe1-b5a9-4278-8cad-bd2c59455b0b" } } }, { "id": "4512013c-376b-47db-8837-286399790ca8", "name": "VAC", "cloudConnectAgentUid": "078ac93f-ff5c-4443-9675-199e01fcf77b" "isClientsAccelerator": false "_links": { "self": { "href": "https://vac.tech.local:1281/v2/wanAccelerators/4512013c-376b-47db-8837-286399790ca8" } } } ] |