v1

latestOpenAPI 3.0.02026-08-0491343.5 KB
licenses

Gets the license status information of the current tenant

get/api/v1/licenses/status

Headers

authorizationstring bearer

Authentication token

Response

License status info.

type'Signed' | 'Plain' | '2.0' required

Type of license key.

trialboolean required

Boolean indicating if it is a trial license.

validstring required

Period that the license is currently set to be active. Represented as an ISO 8601 time interval with start and end.

origin'Internal' | 'External' required

Origin of license key.

status'Ok' | 'Blacklisted' | 'Expired' | 'Missing' required

Enum with status of license. Only status Ok grants license. access.

productstring required

The product the license is valid for.

deactivatedboolean required

Boolean indicating if the license is deactivated.

extensionStatus'Unavailable' | 'Pending' | 'Available' required

Enum with extension status of license. access.

Example response

{
  "type": "Signed",
  "trial": false,
  "valid": "2018-01-01/2018-12-31",
  "origin": "Internal",
  "status": "Ok",
  "product": "Qlik Sense Business",
  "extensionStatus": "Unavailable"
}