This is an archive version of the document. To get the most up-to-date information, see the current version.

Check Licence Agreement Acceptance

You can verify the license agreement acceptance.

Request

To check whether the license agreement was accepted, send the HTTP GET request to the /licenseAgreement/accepted endpoint.

HTTP Request

GET https://<hostname>:<port>/api/v1/licenseAgreement/accepted

Request Headers

The request contains the following headers.

Header

Required/Optional

Value

Description

x-api-version

Required

1.0-rev0

Specifies the current revision of the Veeam Backup for AWS REST API.

Response

The server returns the following response to the client.

Response Code

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 HTTP headers.

Header

Value

Description

Content-Length

integer

Identifies the length of the response body message, in bytes.

Content-Type

  • application/json
  • application/problem+json

Identifies the media type of the response body message.

Response Body

In the response body, Veeam Backup for AWS returns the accepted parameter of the boolean type. If the license agreement was accepted, the parameter value is set to true.

Check Licence Agreement AcceptanceExample

The following request verifies the acceptance of the license agreement.

Request:

GET https://135.169.170.192:11005/api/v1/licenseAgreement/accepted

 

Request Header:

x-api-version: 1.0-rev0

 

Response:

200

 

Response Body:

{

 "accepted": true

}