Get Veeam Backup & Replication Licenses
You can get a representation of а collection licenses for Veeam Backup & Replication servers managed in Veeam Availability Console.
Request
To get a representation of all tenant server licenses, send the GET HTTPS request to the URL of the /licensing/backupserverLicenses collection.
HTTP Request
GET https://<Availability-Console>:1281/v2/licensing/backupserverLicenses |
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/backupserverLicenses collection.
Example
The following request returns a representation of all licenses of tenant Veeam Backup & Replication servers.
Request: GET https://localhost:1281/v2/licensing/backupserverLicenses
Request Header: Authorization: Bearer <Access-Token>
Response Code: 200 Success
Response Body: [ { "id": "c5aba79e-2ebf-4f7f-815c-33088d622cc5", "contactPerson": "James Wilson", "licenseAdministratorEmail": "admin@delta.com", "licenseeEmail": "j_wilson@delta.com", "edition": "Enterprise Plus", "licensedTo": "Delta AG", "licenseType": "Rental", "status": "Valid", "supportID": "123456789", "licenseExpirationDate": "2020-10-24T21:00:00Z", "supportExpirationDate": "2020-10-24T21:00:00Z", "licensedSockets": 0, "usedSockets": 0, "licensedVMs": 0, "usedVMs": 0, "backupServerName": "BACKUP02", "companyName": "Delta", "locationName": "Default location", "newVMs": 0, "totalInstances": 1000, "usedInstances": 521, "_links": { "self": { "href": "https://vac.tech.local:1281/v2/backupLicenses/c5aba79e-2ebf-4f7f-815c-33088d622cc5" }, "backupServers": [ { "href": "https://vac.tech.local:1281/v2/backupServers/2" } ] } }, { "id": "089cc472-302f-4ee2-aca5-24ce0ac513a1", "contactPerson": "Maddison Grace", "licenseAdministratorEmail": "admin@alpha.com", "licenseeEmail": "m_grace@delta.com", "edition": "Enterprise Plus", "licensedTo": "Alpha Enterprise", "licenseType": "Rental", "status": "Valid", "supportID": "987456321", "licenseExpirationDate": "2020-10-24T21:00:00Z", "supportExpirationDate": "2020-10-24T21:00:00Z", "licensedSockets": 0, "usedSockets": 0, "licensedVMs": 1000, "usedVMs": 862, "backupServerName": "BACKUP03", "companyName": "Alpha", "locationName": "Default location", "newVMs": 90, "totalInstances": 0, "usedInstances": 0, "_links": { "self": { "href": "https://vac.tech.local:1281/v2/backupLicenses/089cc472-302f-4ee2-aca5-24ce0ac513a1" }, "backupServers": [ { "href": "https://vac.tech.local:1281/v2/backupServers/3" } ] } } ] |