Removing License
This section explains how to remove the license.
Request
DELETE https://<hostname>/api/v1/license |
Request Headers
The request header must contain an authorization token of the current session.
Request Parameters
None.
Request Body
None.
Response
After you remove the license, Veeam Backup for Microsoft Azure switches back to the Free edition.
The server returns the following response to the client.
Response Codes
A successfully completed operation returns a response code 200 (OK).
Response Headers
The response to this request contains the following headers. The response may also include additional standard HTTPS headers.
Header | Description |
Content-length | The length of the response body. |
Content-type | The media type and syntax of the response body message: application/json; charset=utf-8 |
Response Body
Property | Type | Description |
|---|---|---|
licenseType | string | Shows the type of the license. |
instancesUses | integer | Shows the number of used instances. |
instances | integer | Shows how many instances the installed license is able to protect. |
gracePeriodDays | integer | Shows the grace period that applies once the license if expired. |
Example
Request: DELETE https://abc.ukwest.cloudapp.azure.com/api/v1/license
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: { "licenseType": "Subscription", "instancesUses": 1, "instances": 100, "gracePeriodDays": 30 } |