Get a Veeam Cloud Connect License
You can get a representation of a license installed on a Veeam Cloud Connect server with the specified system ID.
Request
To get a representation of a license, send the GET HTTPS request to the URL of its resource.
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 /licensing/cloudconnectLicenses/{instanceUid} resource.
Example
The following request returns an entity representation of a license installed on a Veeam Cloud Connect server with ID 514c45eb-9543-4799-8003-1e59385b774c.
Request: GET https://localhost:1281/v2/licensing/cloudconnectLicenses/514c45eb-9543-4799-8003-1e59385b774c
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", "monotoring": "Yes" "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, "packages": [ "Backup" ], "sectionTypes": [ "Instance" ], "_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" } ] } } |