Get Veeam Cloud Connect License Usage
You can get a representation of Veeam Cloud Connect license usage by a specific tenant.
Request
To get a representation of license units used to protect tenant workloads in Veeam Cloud Connect, send the GET HTTPS request to the URL of the /tenants/{instanceUid}/licensing/cloudConnectUsage/byVCCTenantUid 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 /tenants/{instanceUid}/licensing/cloudConnectUsage/byVCCTenantUid resource.
Example
The following request returns information about Veeam Cloud Connect license units used by a tenant with UID 3f7019ca-e738-4d03-b1eb-808f592d3828.
Request: GET https://localhost:1281/v2/tenants/3f7019ca-e738-4d03-b1eb-808f592d3828/licensing/cloudConnectUsage/byVCCTenantUid
Request Header: Authorization: Bearer <Access-Token>
Response Code: 200 Success
Response Body: [ { "type": "CC_Workstation_Backup", "unitType": "Instances" "rentalUnits": 1.6, "newUnits": 0, "usedUnits": 0, "rentalCount": 10, "newCount": 0, "usedCount": 0 }, { "type": "CC_Server_Backup", "unitType": "Instances" "rentalUnits": 0.33, "newUnits": 0, "usedUnits": 0, "rentalCount": 1, "newCount": 0, "usedCount": 0 } ] |