Events emitted when Analytics apps are created, deleted, updated, exported, published, or reloaded in a Qlik Cloud tenant.

Choosing the right event for reload-related workflows

For most workflows that depend on the final result of a scheduled reload or a reload request started through the Reloads API, use com.qlik.v1.reload.finished from Reloads events instead of com.qlik.v1.app.reload.finished.

Use com.qlik.v1.app.reload.finished when you need to react to individual engine reload attempts.

Use com.qlik.v1.app.data.updated when your workflow depends on app data or app content being updated, rather than on the final status of a reload request.

AppOpened

An app was opened.

Payload

object
  • idstring

    CloudEvent Identifier.

  • dataobject

    An app was opened.

    Show data properties
    • idstring

      App identifier.

    • resourceTypestring

      App resource type.

    • workloadTypestring

      Workload type.

    • _resourcetypestringDeprecated

      App resource type.

  • hoststring

    Unique identifier for event producer.

  • timestring

    Time when event was sent.

  • typestring

    Event message name.

  • reasonstring

    Reason for event.

  • sourcestring

    CloudEvent source Identifier.

  • useridstring

    User Identifier.

  • owneridstring

    Owner Identifier.

  • spaceidstring

    Space Identifier if resource is in a space.

  • authtypestring

    A string representing the type of principal that triggered the occurrence

  • clientidstring

    OAuth-Client Identifier of the Event for OAuth token requests.

  • tenantidstring

    Tenant Identifier.

  • sessionidstring

    Session Identifier.

  • authclaimsstring

    A JSON string representing claims of the principal that triggered the event.

  • specversionstring

    CloudEvents version.

  • datacontenttypestring

    CloudEvent content type.

  • toplevelresourceidstring

    Identifier of the top level resource

com.qlik.v1.app.opened

Example payload of the "AppOpened" event

{
"id": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"data": {
"id": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"resourceType": "string",
"workloadType": "string",
"_resourcetype": "string"
},
"host": "id",
"time": "2022-10-30T07:06:22Z",
"type": "com.qlik.v1.app.opened",
"reason": "publishreplace",
"source": "com.qlik/engine",
"userid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"ownerid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"spaceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authtype": "service_account",
"clientid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"tenantid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"sessionid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authclaims": "{\"iss\":\"02_Open_App_V1\", \"sub\":\"7eddf8df-ce4f-4b94-9388-8d9e21b9ed75\", \"subType\":\"api-key\"}",
"specversion": "1.0",
"datacontenttype": "application/json",
"toplevelresourceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76"
}

AppReloadFinished

A reload of an app was finished v1

Payload

object
  • idstring

    CloudEvent Identifier.

  • dataobject

    A reload of an app was finished v1

    Show data properties
    • namestring

      App name.

    • sizeobject
      Show size properties
      • memoryinteger

        Data model size in memory (bytes).

    • usagestring

      Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP""SINGLE_TABLE_PREP""DIRECT_QUERY_MODE"

    • errorsarray of undefinedsDeprecated

      Reload errors. Max items 5.

    • statusstring

      Reload status - error or ok.

    • endTimestring

      Time when reload ended.

    • durationinteger

      Duration of reload (ms).

    • reloadIdstring

      Reload identifier.

    • rowLimitinteger

      If greater than or equal 0, defines max number of rows loaded from a data source.

    • warningsarray of undefinedsDeprecated

      Reload warnings. Max items 5.

    • statementsarray of undefinedsDeprecated

      An empty list intended to hold script statements and their metadata. Use the Apps API to fetch reload metadata.

    • isSkipStoreboolean

      True if store statements are blocked from executing.

    • isSessionAppboolean

      App is a Session app.

    • isPartialReloadboolean

      True if the reload is a partial reload.

    • peakMemoryBytesinteger

      Maximum number of bytes used during reload of the app.

    • isDirectQueryModeboolean

      App is a Direct Query app

    • endedWithMemoryConstraintboolean

      true if memory limits were exhausted during reload.

  • hoststring

    Unique identifier for event producer.

  • timestring

    Time when event was sent.

  • typestring

    Event message name.

  • reasonstring

    Reason for event.

  • sourcestring

    CloudEvent source Identifier.

  • useridstring

    User Identifier.

  • owneridstring

    Owner Identifier.

  • spaceidstring

    Space Identifier if resource is in a space.

  • authtypestring

    A string representing the type of principal that triggered the occurrence

  • clientidstring

    OAuth-Client Identifier of the Event for OAuth token requests.

  • tenantidstring

    Tenant Identifier.

  • sessionidstring

    Session Identifier.

  • authclaimsstring

    A JSON string representing claims of the principal that triggered the event.

  • specversionstring

    CloudEvents version.

  • datacontenttypestring

    CloudEvent content type.

  • toplevelresourceidstring

    Identifier of the top level resource

com.qlik.v1.app.reload.finished

Example payload of the "AppReloadFinished" event

{
"id": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"data": {
"name": "string",
"size": {
"memory": 42
},
"errors": [],
"status": "string",
"endTime": "2018-10-30T07:06:22Z",
"duration": 42,
"reloadId": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"rowLimit": -1,
"warnings": [],
"statements": [],
"isSkipStore": true,
"isSessionApp": true,
"isPartialReload": true,
"peakMemoryBytes": 42,
"isDirectQueryMode": true,
"endedWithMemoryConstraint": true
},
"host": "id",
"time": "2022-10-30T07:06:22Z",
"type": "com.qlik.v1.app.reload.finished",
"reason": "publishreplace",
"source": "com.qlik/engine",
"userid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"ownerid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"spaceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authtype": "service_account",
"clientid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"tenantid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"sessionid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authclaims": "{\"iss\":\"02_Open_App_V1\", \"sub\":\"7eddf8df-ce4f-4b94-9388-8d9e21b9ed75\", \"subType\":\"api-key\"}",
"specversion": "1.0",
"datacontenttype": "application/json",
"toplevelresourceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76"
}

AppCreated

An app was created.

Payload

object
  • idstring

    CloudEvent Identifier.

  • dataobject

    An app was created.

    Show data properties
    • idstring

      App identifier.

    • namestring

      App name.

    • sizeobject
      Show size properties
      • fileinteger

        Data model size on file (bytes).

      • memoryinteger

        Data model size in memory (bytes).

    • ownerstringDeprecated

      App owner.

    • usagestring

      Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP""SINGLE_TABLE_PREP""DIRECT_QUERY_MODE"

    • customobject

      Contains dynamic JSON data specified by the client.

    • ownerIdstring

      App owner identifier.

    • spaceIdstring

      App space identifier.

    • publishedboolean

      When true, the app was distributed.

    • thumbnailstring

      App thumbnail.

    • createdDatestring

      Time when app was created.

    • descriptionstring

      App description.

    • originAppIdstring

      Origin app identifier.

    • publishTimestring

      Time when app was published.

    • dynamicColorstring

      App dynamic color.

    • modifiedDatestring

      Time when app was last modified.

    • resourceTypestring

      App resource type.

    • _resourcetypestringDeprecated

      App resource type.

    • lastReloadTimestring

      Time of last successful reload.

    • createdByActionstring

      Can be one of: "create""copy""publish""import""restore"

    • hasSectionAccessboolean

      When true, the app has section access.

    • isDirectQueryModeboolean

      When true, the app is a Direct Query app.

  • hoststring

    Unique identifier for event producer.

  • timestring

    Time when event was sent.

  • typestring

    Event message name.

  • reasonstring

    Reason for event.

  • sourcestring

    CloudEvent source Identifier.

  • useridstring

    User Identifier.

  • owneridstring

    Owner Identifier.

  • spaceidstring

    Space Identifier if resource is in a space.

  • authtypestring

    A string representing the type of principal that triggered the occurrence.

  • clientidstring

    OAuth-Client Identifier of the Event for OAuth token requests.

  • tenantidstring

    Tenant Identifier.

  • sessionidstring

    Session Identifier.

  • authclaimsstring

    A JSON string representing claims of the principal that triggered the event.

  • specversionstring

    CloudEvents version.

  • datacontenttypestring

    CloudEvent content type.

  • toplevelresourceidstring

    Identifier of the top level resource

com.qlik.app.created

Example payload of the "AppCreated" event

{
"id": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"data": {
"id": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"name": "string",
"size": {
"file": 42,
"memory": 42
},
"owner": "string",
"custom": {},
"ownerId": "string",
"spaceId": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"published": true,
"thumbnail": "string",
"createdDate": "2018-10-30T07:06:22Z",
"description": "string",
"originAppId": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"publishTime": "2018-10-30T07:06:22Z",
"dynamicColor": "string",
"modifiedDate": "2018-10-30T07:06:22Z",
"resourceType": "string",
"_resourcetype": "string",
"lastReloadTime": "2018-10-30T07:06:22Z",
"hasSectionAccess": true,
"isDirectQueryMode": true
},
"host": "id",
"time": "2022-10-30T07:06:22Z",
"type": "com.qlik.app.created",
"reason": "publishreplace",
"source": "com.qlik/engine",
"userid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"ownerid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"spaceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authtype": "service_account",
"clientid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"tenantid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"sessionid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authclaims": "{\"iss\":\"02_Open_App_V1\", \"sub\":\"7eddf8df-ce4f-4b94-9388-8d9e21b9ed75\", \"subType\":\"api-key\"}",
"specversion": "1.0",
"datacontenttype": "application/json",
"toplevelresourceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76"
}

AppDataUpdated

The data of an app was updated.

Payload

object
  • idstring

    CloudEvent Identifier.

  • dataobject

    The data of an app was updated.

    Show data properties
    • idstring

      App identifier.

    • namestring

      App name.

    • sizeobject
      Show size properties
      • fileinteger

        Data model size on file (bytes).

      • memoryinteger

        Data model size in memory (bytes).

    • spaceIdstring

      App space identifier.

    • _updatesarray of objects
      Show _updates properties
      • pathstring

        Path to the updated value.

      • newValuestring

        Value after update.

      • oldValuestring

        Value before update.

    • resourceTypestring

      App resource type.

    • _resourcetypestringDeprecated

      App resource type.

    • lastReloadTimestring

      Time of last successful reload.

    • lineageChangedboolean

      When true, there is new lineage information saved.

  • hoststring

    Unique identifier for event producer.

  • timestring

    Time when event was sent.

  • typestring

    Event message name.

  • reasonstring

    Reason for event.

  • sourcestring

    CloudEvent source Identifier.

  • useridstring

    User Identifier.

  • owneridstring

    Owner Identifier.

  • spaceidstring

    Space Identifier if resource is in a space.

  • authtypestring

    A string representing the type of principal that triggered the occurrence.

  • clientidstring

    OAuth-Client Identifier of the Event for OAuth token requests.

  • tenantidstring

    Tenant Identifier.

  • sessionidstring

    Session Identifier.

  • authclaimsstring

    A JSON string representing claims of the principal that triggered the event.

  • specversionstring

    CloudEvents version.

  • datacontenttypestring

    CloudEvent content type.

  • toplevelresourceidstring

    Identifier of the top level resource

com.qlik.app.data.updated

Example payload of the "AppDataUpdated" event

{
"id": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"data": {
"id": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"name": "string",
"size": {
"file": 42,
"memory": 42
},
"spaceId": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"_updates": [
{
"path": "string",
"newValue": "string",
"oldValue": "string"
}
],
"resourceType": "string",
"_resourcetype": "string",
"lastReloadTime": "2018-10-30T07:06:22Z",
"lineageChanged": true
},
"host": "id",
"time": "2022-10-30T07:06:22Z",
"type": "com.qlik.app.data.updated",
"reason": "publishreplace",
"source": "com.qlik/engine",
"userid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"ownerid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"spaceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authtype": "service_account",
"clientid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"tenantid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"sessionid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authclaims": "{\"iss\":\"02_Open_App_V1\", \"sub\":\"7eddf8df-ce4f-4b94-9388-8d9e21b9ed75\", \"subType\":\"api-key\"}",
"specversion": "1.0",
"datacontenttype": "application/json",
"toplevelresourceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76"
}

AppDeleted

An app was deleted.

Payload

object
  • idstring

    CloudEvent Identifier.

  • dataobject

    An app was deleted.

    Show data properties
    • idstring

      App identifier.

    • namestring

      App name.

    • usagestring

      Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP""SINGLE_TABLE_PREP""DIRECT_QUERY_MODE"

    • spaceIdstring

      App space identifier.

    • deleteTypestring

      Can be one of: "SOFT""HARD"

    • resourceTypestring

      App resource type.

    • _resourcetypestringDeprecated

      App resource type.

    • isDirectQueryModeboolean

      When true, the app is a Direct Query app.

  • hoststring

    Unique identifier for event producer.

  • timestring

    Time when event was sent.

  • typestring

    Event message name.

  • reasonstring

    Reason for event.

  • sourcestring

    CloudEvent source Identifier.

  • useridstring

    User Identifier.

  • owneridstring

    Owner Identifier.

  • spaceidstring

    Space Identifier if resource is in a space.

  • authtypestring

    A string representing the type of principal that triggered the occurrence.

  • clientidstring

    OAuth-Client Identifier of the Event for OAuth token requests.

  • tenantidstring

    Tenant Identifier.

  • sessionidstring

    Session Identifier.

  • authclaimsstring

    A JSON string representing claims of the principal that triggered the event.

  • specversionstring

    CloudEvents version.

  • datacontenttypestring

    CloudEvent content type.

  • toplevelresourceidstring

    Identifier of the top level resource

com.qlik.app.deleted

Example payload of the "AppDeleted" event

{
"id": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"data": {
"id": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"name": "string",
"spaceId": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"resourceType": "string",
"_resourcetype": "string",
"isDirectQueryMode": true
},
"host": "id",
"time": "2022-10-30T07:06:22Z",
"type": "com.qlik.app.deleted",
"reason": "publishreplace",
"source": "com.qlik/engine",
"userid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"ownerid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"spaceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authtype": "service_account",
"clientid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"tenantid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"sessionid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authclaims": "{\"iss\":\"02_Open_App_V1\", \"sub\":\"7eddf8df-ce4f-4b94-9388-8d9e21b9ed75\", \"subType\":\"api-key\"}",
"specversion": "1.0",
"datacontenttype": "application/json",
"toplevelresourceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76"
}

AppExported

An app was exported.

Payload

object
  • idstring

    CloudEvent Identifier.

  • dataobject

    An app was exported.

    Show data properties
    • idstring

      App identifier.

    • namestring

      App name.

    • ownerstringDeprecated

      App owner.

    • usagestring

      Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP""SINGLE_TABLE_PREP""DIRECT_QUERY_MODE"

    • customobject

      Contains dynamic JSON data specified by the client.

    • ownerIdstring

      App owner.

    • spaceIdstring

      Space identifier.

    • dataReducedboolean

      When true, data was reduced for smaller file size.

    • dataExportedboolean

      When true, data was exported.

    • exportedDatestring

      Time when app was exported.

    • resourceTypestring

      App resource type.

    • _resourcetypestringDeprecated

      App resource type.

  • hoststring

    Unique identifier for event producer.

  • timestring

    Time when event was sent.

  • typestring

    Event message name.

  • reasonstring

    Reason for event.

  • sourcestring

    CloudEvent source Identifier.

  • useridstring

    User Identifier.

  • owneridstring

    Owner Identifier.

  • spaceidstring

    Space Identifier if resource is in a space.

  • authtypestring

    A string representing the type of principal that triggered the occurrence.

  • clientidstring

    OAuth-Client Identifier of the Event for OAuth token requests.

  • tenantidstring

    Tenant Identifier.

  • sessionidstring

    Session Identifier.

  • authclaimsstring

    A JSON string representing claims of the principal that triggered the event.

  • specversionstring

    CloudEvents version.

  • datacontenttypestring

    CloudEvent content type.

  • toplevelresourceidstring

    Identifier of the top level resource

com.qlik.app.exported

Example payload of the "AppExported" event

{
"id": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"data": {
"id": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"name": "string",
"owner": "string",
"custom": {},
"ownerId": "string",
"spaceId": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"dataReduced": true,
"dataExported": true,
"exportedDate": "2018-10-30T07:06:22Z",
"resourceType": "string",
"_resourcetype": "string"
},
"host": "id",
"time": "2022-10-30T07:06:22Z",
"type": "com.qlik.app.exported",
"reason": "publishreplace",
"source": "com.qlik/engine",
"userid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"ownerid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"spaceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authtype": "service_account",
"clientid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"tenantid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"sessionid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authclaims": "{\"iss\":\"02_Open_App_V1\", \"sub\":\"7eddf8df-ce4f-4b94-9388-8d9e21b9ed75\", \"subType\":\"api-key\"}",
"specversion": "1.0",
"datacontenttype": "application/json",
"toplevelresourceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76"
}

AppHardDeleted

An app was hard deleted and can no longer be restored.

Payload

object
  • idstring

    CloudEvent Identifier.

  • dataobject

    An app was hard deleted and can no longer be restored.

    Show data properties
    • idstring

      App identifier.

    • namestring

      App name.

    • usagestring

      Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP""SINGLE_TABLE_PREP""DIRECT_QUERY_MODE"

    • spaceIdstring

      App space identifier.

    • resourceTypestring

      App resource type.

    • isDirectQueryModeboolean

      When true, the app is a Direct Query app.

  • hoststring

    Unique identifier for event producer.

  • timestring

    Time when event was sent.

  • typestring

    Event message name.

  • reasonstring

    Reason for event.

  • sourcestring

    CloudEvent source Identifier.

  • useridstring

    User Identifier.

  • owneridstring

    Owner Identifier.

  • spaceidstring

    Space Identifier if resource is in a space.

  • authtypestring

    A string representing the type of principal that triggered the occurrence.

  • clientidstring

    OAuth-Client Identifier of the Event for OAuth token requests.

  • tenantidstring

    Tenant Identifier.

  • sessionidstring

    Session Identifier.

  • authclaimsstring

    A JSON string representing claims of the principal that triggered the event.

  • specversionstring

    CloudEvents version.

  • datacontenttypestring

    CloudEvent content type.

  • toplevelresourceidstring

    Identifier of the top level resource

com.qlik.app.harddeleted

Example payload of the "AppHardDeleted" event

{
"id": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"data": {
"id": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"name": "string",
"spaceId": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"resourceType": "string",
"isDirectQueryMode": true
},
"host": "id",
"time": "2022-10-30T07:06:22Z",
"type": "com.qlik.app.harddeleted",
"reason": "publishreplace",
"source": "com.qlik/engine",
"userid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"ownerid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"spaceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authtype": "service_account",
"clientid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"tenantid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"sessionid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authclaims": "{\"iss\":\"02_Open_App_V1\", \"sub\":\"7eddf8df-ce4f-4b94-9388-8d9e21b9ed75\", \"subType\":\"api-key\"}",
"specversion": "1.0",
"datacontenttype": "application/json",
"toplevelresourceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76"
}

AppPublished

An app was published.

Payload

object
  • idstring

    CloudEvent Identifier.

  • dataobject

    An app was published.

    Show data properties
    • idstring

      App identifier.

    • namestring

      App name.

    • ownerstringDeprecated

      App owner.

    • usagestring

      Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP""SINGLE_TABLE_PREP""DIRECT_QUERY_MODE"

    • customobject

      Contains dynamic JSON data specified by the client.

    • spaceIdstring

      Space identifier.

    • originAppIdstring

      Origin app identifier.

    • resourceTypestring

      App resource type.

    • _resourcetypestringDeprecated

      App resource type.

    • dataPublishedboolean

      When true, data was published.

    • originSpaceIdstring

      Origin space identifier.

    • publishedDatestring

      Time when app was published.

  • hoststring

    Unique identifier for event producer.

  • timestring

    Time when event was sent.

  • typestring

    Event message name.

  • reasonstring

    Reason for event.

  • sourcestring

    CloudEvent source Identifier.

  • useridstring

    User Identifier.

  • owneridstring

    Owner Identifier.

  • spaceidstring

    Space Identifier if resource is in a space.

  • authtypestring

    A string representing the type of principal that triggered the occurrence.

  • clientidstring

    OAuth-Client Identifier of the Event for OAuth token requests.

  • tenantidstring

    Tenant Identifier.

  • sessionidstring

    Session Identifier.

  • authclaimsstring

    A JSON string representing claims of the principal that triggered the event.

  • specversionstring

    CloudEvents version.

  • datacontenttypestring

    CloudEvent content type.

  • toplevelresourceidstring

    Identifier of the top level resource

com.qlik.app.published

Example payload of the "AppPublished" event

{
"id": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"data": {
"id": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"name": "string",
"owner": "string",
"custom": {},
"spaceId": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"originAppId": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"resourceType": "string",
"_resourcetype": "string",
"dataPublished": true,
"originSpaceId": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"publishedDate": "2018-10-30T07:06:22Z"
},
"host": "id",
"time": "2022-10-30T07:06:22Z",
"type": "com.qlik.app.published",
"reason": "publishreplace",
"source": "com.qlik/engine",
"userid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"ownerid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"spaceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authtype": "service_account",
"clientid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"tenantid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"sessionid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authclaims": "{\"iss\":\"02_Open_App_V1\", \"sub\":\"7eddf8df-ce4f-4b94-9388-8d9e21b9ed75\", \"subType\":\"api-key\"}",
"specversion": "1.0",
"datacontenttype": "application/json",
"toplevelresourceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76"
}

AppSoftDeleted

An app was soft deleted and can still be restored.

Payload

object
  • idstring

    CloudEvent Identifier.

  • dataobject

    An app was soft deleted and can still be restored.

    Show data properties
    • idstring

      App identifier.

    • namestring

      App name.

    • usagestring

      Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP""SINGLE_TABLE_PREP""DIRECT_QUERY_MODE"

    • purgeAtstring

      Earliest date the soft deleted app may be hard deleted (permanently purged). Once this date is reached, purge can happen at any time and is not under user control.

    • spaceIdstring

      App space identifier.

    • resourceTypestring

      App resource type.

    • isDirectQueryModeboolean

      When true, the app is a Direct Query app.

  • hoststring

    Unique identifier for event producer.

  • timestring

    Time when event was sent.

  • typestring

    Event message name.

  • reasonstring

    Reason for event.

  • sourcestring

    CloudEvent source Identifier.

  • useridstring

    User Identifier.

  • owneridstring

    Owner Identifier.

  • spaceidstring

    Space Identifier if resource is in a space.

  • authtypestring

    A string representing the type of principal that triggered the occurrence.

  • clientidstring

    OAuth-Client Identifier of the Event for OAuth token requests.

  • tenantidstring

    Tenant Identifier.

  • sessionidstring

    Session Identifier.

  • authclaimsstring

    A JSON string representing claims of the principal that triggered the event.

  • specversionstring

    CloudEvents version.

  • datacontenttypestring

    CloudEvent content type.

  • toplevelresourceidstring

    Identifier of the top level resource

com.qlik.app.softdeleted

Example payload of the "AppSoftDeleted" event

{
"id": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"data": {
"id": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"name": "string",
"purgeAt": "string",
"spaceId": "c35f4b70-3ce4-4a30-b62b-2aef16943bc4",
"resourceType": "string",
"isDirectQueryMode": true
},
"host": "id",
"time": "2022-10-30T07:06:22Z",
"type": "com.qlik.app.softdeleted",
"reason": "publishreplace",
"source": "com.qlik/engine",
"userid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"ownerid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"spaceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authtype": "service_account",
"clientid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"tenantid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"sessionid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76",
"authclaims": "{\"iss\":\"02_Open_App_V1\", \"sub\":\"7eddf8df-ce4f-4b94-9388-8d9e21b9ed75\", \"subType\":\"api-key\"}",
"specversion": "1.0",
"datacontenttype": "application/json",
"toplevelresourceid": "ccb149fb-e2dd-420b-8d9f-e6aacb95eb76"
}