Tenants
Events emitted when tenants are created, updated, deleted, deactivated, or reactivated in Qlik Cloud. These events enable monitoring of tenant lifecycle and status changes.
These events are available for consumption via:
Published when deactivation is allowed for a tenant.
Payload
object- idstringRequired
Identifies the event.
- timestring
Timestamp of when the occurrence happened. Must adhere to RFC 3339.
- typestringRequired
Unique identifier for the event type.
- sourcestringRequired
Identifies the context in which an event happened.
- specversionstringRequired
The version of the CloudEvents specification which the event uses.
- datacontenttypestring
Content type of the data value. Must adhere to RFC 2046 format.
- useridstring
Unique identifier for the user triggering the event.
- tenantidstringRequired
Unique identifier for the tenant related to the event.
- dataobject
Details of the tenant.
data properties
- idstringRequired
Identifier of the tenant.
- namestring
Tenant name.
- hostnamesarray of strings
List of hostname(s) associated with the tenant.
- allowDeactivateUntilstring
Timestamp until which the tenant can be deactivated.
-
com.qlik.v1.tenant.allowed-deactivate
Example payload of the "Tenant allowed deactivate" event
{ "id": "A234-1234-1234", "time": "2025-04-21T13:45:30Z", "type": "com.qlik.v1.tenant.allowed-deactivate", "source": "com.qlik/tenants", "specversion": "1.0", "datacontenttype": "application/json", "userid": "507f1f77bcf86cd799439011", "tenantid": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "data": { "id": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "name": "Example Tenant", "hostnames": [ "example-tenant.us.qlikcloud.com", "example-tenant.eu.qlikcloud.com" ], "allowDeactivateUntil": "2026-06-24T18:28:31.301Z" }}Published when a new tenant is created.
Payload
object- idstringRequired
Identifies the event.
- timestring
Timestamp of when the occurrence happened. Must adhere to RFC 3339.
- typestringRequired
Unique identifier for the event type.
- sourcestringRequired
Identifies the context in which an event happened.
- specversionstringRequired
The version of the CloudEvents specification which the event uses.
- datacontenttypestring
Content type of the data value. Must adhere to RFC 2046 format.
- useridstring
Unique identifier for the user triggering the event.
- tenantidstringRequired
Unique identifier for the tenant related to the event.
- dataobject
Details of the created tenant.
data properties
- idstringRequired
Identifier of the tenant.
- namestringRequired
Tenant name.
- hostnamesarray of stringsRequired
List of hostname(s) associated with the tenant.
- licenseIdstring
License identifier associated with the tenant.
-
com.qlik.tenant.created
Example payload of the "Tenant created" event
{ "id": "A234-1234-1234", "time": "2025-04-21T13:45:30Z", "type": "com.qlik.tenant.created", "source": "com.qlik/tenants", "specversion": "1.0", "datacontenttype": "application/json", "userid": "507f1f77bcf86cd799439011", "tenantid": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "data": { "id": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "name": "Example Tenant", "hostnames": [ "example-tenant.us.qlikcloud.com", "example-tenant.eu.qlikcloud.com" ], "licenseId": "9999000000003063" }}Published when the tenant status changes from active to disabled.
Payload
object- idstringRequired
Identifies the event.
- timestring
Timestamp of when the occurrence happened. Must adhere to RFC 3339.
- typestringRequired
Unique identifier for the event type.
- sourcestringRequired
Identifies the context in which an event happened.
- specversionstringRequired
The version of the CloudEvents specification which the event uses.
- datacontenttypestring
Content type of the data value. Must adhere to RFC 2046 format.
- useridstring
Unique identifier for the user triggering the event.
- tenantidstringRequired
Unique identifier for the tenant related to the event.
- dataobject
Details of the deactivated tenant.
data properties
- idstringRequired
Identifier of the tenant.
- namestringRequired
Tenant name.
- hostnamesarray of stringsRequired
List of hostname(s) associated with the tenant.
- purgeDatestring
Scheduled purge date when a user or OEM deactivates the tenant.
- statusesDisallowedarray of strings
List of statuses that are disallowed for the tenant.
-
com.qlik.v1.tenant.deactivated
Example payload of the "Tenant deactivated" event
{ "id": "A234-1234-1234", "time": "2025-04-21T13:45:30Z", "type": "com.qlik.v1.tenant.deactivated", "source": "com.qlik/tenants", "specversion": "1.0", "datacontenttype": "application/json", "userid": "507f1f77bcf86cd799439011", "tenantid": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "data": { "id": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "name": "Example Tenant", "hostnames": [ "example-tenant.us.qlikcloud.com", "example-tenant.eu.qlikcloud.com" ], "purgeDate": "2026-06-24T18:28:31.301Z", "statusesDisallowed": [ "active" ] }}Published when a tenant is deleted.
Payload
object- idstringRequired
Identifies the event.
- timestring
Timestamp of when the occurrence happened. Must adhere to RFC 3339.
- typestringRequired
Unique identifier for the event type.
- sourcestringRequired
Identifies the context in which an event happened.
- specversionstringRequired
The version of the CloudEvents specification which the event uses.
- datacontenttypestring
Content type of the data value. Must adhere to RFC 2046 format.
- useridstring
Unique identifier for the user triggering the event.
- tenantidstringRequired
Unique identifier for the tenant related to the event.
- dataobject
Details of the deleted tenant.
data properties
- idstringRequired
Identifier of the tenant.
- namestringRequired
Tenant name.
- hostnamesarray of stringsRequired
List of hostname(s) associated with the tenant.
-
com.qlik.tenant.deleted
Example payload of the "Tenant deleted" event
{ "id": "A234-1234-1234", "time": "2025-04-21T13:45:30Z", "type": "com.qlik.tenant.deleted", "source": "com.qlik/tenants", "specversion": "1.0", "datacontenttype": "application/json", "userid": "507f1f77bcf86cd799439011", "tenantid": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "data": { "id": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "name": "Example Tenant", "hostnames": [ "example-tenant.us.qlikcloud.com", "example-tenant.eu.qlikcloud.com" ] }}Published when deactivation is disallowed for a tenant.
Payload
object- idstringRequired
Identifies the event.
- timestring
Timestamp of when the occurrence happened. Must adhere to RFC 3339.
- typestringRequired
Unique identifier for the event type.
- sourcestringRequired
Identifies the context in which an event happened.
- specversionstringRequired
The version of the CloudEvents specification which the event uses.
- datacontenttypestring
Content type of the data value. Must adhere to RFC 2046 format.
- useridstring
Unique identifier for the user triggering the event.
- tenantidstringRequired
Unique identifier for the tenant related to the event.
- dataobject
Details of the tenant.
data properties
- idstringRequired
Identifier of the tenant.
- namestring
Tenant name.
- hostnamesarray of strings
List of hostname(s) associated with the tenant.
-
com.qlik.v1.tenant.disallowed-deactivate
Example payload of the "Tenant disallowed deactivate" event
{ "id": "A234-1234-1234", "time": "2025-04-21T13:45:30Z", "type": "com.qlik.v1.tenant.disallowed-deactivate", "source": "com.qlik/tenants", "specversion": "1.0", "datacontenttype": "application/json", "userid": "507f1f77bcf86cd799439011", "tenantid": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "data": { "id": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "name": "Example Tenant", "hostnames": [ "example-tenant.us.qlikcloud.com", "example-tenant.eu.qlikcloud.com" ] }}Published when the tenant status changes from disabled to active.
Payload
object- idstringRequired
Identifies the event.
- timestring
Timestamp of when the occurrence happened. Must adhere to RFC 3339.
- typestringRequired
Unique identifier for the event type.
- sourcestringRequired
Identifies the context in which an event happened.
- specversionstringRequired
The version of the CloudEvents specification which the event uses.
- datacontenttypestring
Content type of the data value. Must adhere to RFC 2046 format.
- useridstring
Unique identifier for the user triggering the event.
- tenantidstringRequired
Unique identifier for the tenant related to the event.
- dataobject
Details of the reactivated tenant.
data properties
- idstringRequired
Identifier of the tenant.
- namestring
Tenant name.
- hostnamesarray of strings
List of hostname(s) associated with the tenant.
- statusesDisallowedarray of strings
List of statuses that are disallowed for the tenant.
-
com.qlik.v1.tenant.reactivated
Example payload of the "Tenant reactivated" event
{ "id": "A234-1234-1234", "time": "2025-04-21T13:45:30Z", "type": "com.qlik.v1.tenant.reactivated", "source": "com.qlik/tenants", "specversion": "1.0", "datacontenttype": "application/json", "userid": "507f1f77bcf86cd799439011", "tenantid": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "data": { "id": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "name": "Example Tenant", "hostnames": [ "example-tenant.us.qlikcloud.com", "example-tenant.eu.qlikcloud.com" ], "statusesDisallowed": [ "active" ] }}Published when a tenant is updated.
Payload
object- idstringRequired
Identifies the event.
- timestring
Timestamp of when the occurrence happened. Must adhere to RFC 3339.
- typestringRequired
Unique identifier for the event type.
- sourcestringRequired
Identifies the context in which an event happened.
- specversionstringRequired
The version of the CloudEvents specification which the event uses.
- datacontenttypestring
Content type of the data value. Must adhere to RFC 2046 format.
- useridstring
Unique identifier for the user triggering the event.
- tenantidstringRequired
Unique identifier for the tenant related to the event.
- dataobject
Details of the updated tenant.
data properties
- idstringRequired
Identifier of the tenant.
- updatesarray of objectsRequired
Collection of updates performed on the resource.
updates properties
- newValuestring
Value of the field after the update.
- oldValuestring
Value of the field before the update.
- propertystring
Property that has changed.
-
- hostnamesarray of stringsRequired
List of hostname(s) associated with the tenant.
- licenseIdstringRequired
License identifier associated with the tenant.
- parentTenantIdstring
Parent license identifier associated with the tenant.
- capabilityBankIdstring
Capability bank identifier associated with the license.
-
com.qlik.tenant.updated
Example payload of the "Tenant updated" event
{ "id": "A234-1234-1234", "time": "2025-04-21T13:45:30Z", "type": "com.qlik.tenant.updated", "source": "com.qlik/tenants", "specversion": "1.0", "datacontenttype": "application/json", "userid": "507f1f77bcf86cd799439011", "tenantid": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "data": { "id": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69", "updates": [ { "newValue": "Example Tenant Updated", "oldValue": "Example Tenant", "property": "name" } ], "hostnames": [ "example-tenant.us.qlikcloud.com", "example-tenant.eu.qlikcloud.com" ], "licenseId": "9999000000003063" }}