Get Veeam Cloud Connect Licenses
You can get a representation of а collection licenses for Veeam Cloud Connect servers connected to Veeam Availability Console.
Request
To get a representation of all Veeam Cloud Connect server licenses, send the GET HTTPS request to the URL of the /licensing/cloudconnectLicenses collection.
HTTP Request
GET https://<Availability-Console>:1281/v2/licensing/cloudconnectLicenses |
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 /licensing/cloudconnectLicenses collection.
Example
The following request returns a representation of all licenses of Veeam Cloud Connect servers.
Request: GET https://localhost:1281/v2/Licensing/cloudconnectLicenses
Request Header: Authorization: Bearer <Access-Token>
Response Code: 200 Success
Response Body: [ { "id": "514c45eb-9543-4799-8003-1e59385b774c", "contactPerson": "John Smith", "licenseAdministratorEmail": "admin@cp.com", "licenseeEmail": "j_smith@cp.com", "edition": "Enterprise Plus", "licensedTo": "Cloud Provider AG", "licenseType": "Rental", "status": "Valid", "supportID": "987412365", "licenseExpirationDate": "2020-10-24T21:00:00Z", "supportExpirationDate": "2020-10-24T21:00:00Z", "licensedVMs": 0, "usedVMs": 0, "backupServerName": "VAC", "companyName": "My Company", "newVMs": 0, "licensedCloudconnectBackups": 501, "usedCloudconnectBackups": 213, "licensedCloudconnectReplicas": 502, "usedCloudconnectReplicas": 94, "licensedCloudconnectServers": 0, "usedCloudconnectServers": 0, "licensedCloudconnectWorkstations": 0, "usedCloudconnectWorkstations": 0, "totalInstances": 1000, "usedInstances": 0, "_links": { "self": { "href": "https://vac.tech.local:1281/v2/cloudLicenses/514c45eb-9543-4799-8003-1e59385b774c" }, "backupServers": [ { "href": "https://vac.tech.local:1281/v2/backupServers/1" } ] } } ] |