Getting License Autoupdate Status
You can get a resource representation of information about autoupdate status for the Veeam Backup for Microsoft 365 license.
Request
GET https://<hostname>:4443/v6/License/AutoUpdate |
Request Headers
The request header must contain an authorization token of the current session.
Request Body
None.
Response
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
In the response body, the server returns a resource representation of the /License/AutoUpdate resource. The response body contains the following properties:
Property | Type | Description |
---|---|---|
isEnabled | boolean | Defines whether automatic update is enabled for the license. |
_links | Dictionary of string [key] and Object [value] | Links to related resources (navigation property). |
_actions | Dictionary of string [key] and Object [value] | Links to actions available for the resource. |
Example
The example returns a resource representation of information about autoupdate status for the license.
Request: GET https://abc.tech.local:4443/v6/License/AutoUpdate
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: { "isEnabled": false, "_links": { "self": { "href": "/v6/licenseAutoUpdate" } }, "_actions": { "update": { "uri": "v6/licenseAutoUpdate", "method": "PUT" } } } |