Data integration projects
Qlik Talend Data Integration lets you create data pipelines to perform a variety of data integration tasks in support of your data architecture and analytics requirements.
These events provide operational status updates of Data integration projects, and can be used alongside the Data integration projects REST API. Learn more about Data integration projects on Qlik Help.
These events are available for consumption via:
Publish an event when a data task has completed successfully
Payload
object- idstringRequired
Unique CloudEvent identifier.
- dataobjectRequired
The event-specific data payload for a completed task.
data properties
- endTimestringRequired
Timestamp when the task ended.
- dataTaskobjectRequired
dataTask properties
- idstringRequiredFilterable
Unique identifier for the data task.
- namestringRequiredFilterable
Name of the data task.
- typestringRequired
Can be one of: "LANDING""STORAGE""QVD_STORAGE""TRANSFORM""DATAMART""REGISTERED_DATA""REPLICATION""LAKE_LANDING""KNOWLEDGE_MART""FILE_BASED_KNOWLEDGE_MART""FILE_LANDING""ICEBERG_STORAGE""MIRROR"
- ownerIdstringRequiredFilterable
Identifier of the owner of the data task.
- spaceIdstringRequiredFilterable
Identifier of the space containing the data task.
- projectIdstringRequiredFilterable
Identifier of the project containing the data task.
- descriptionstring
Optional description of the data task.
-
- startTimestringRequired
Timestamp when the task started.
- startedBystringRequired
Identifier of the user who started the task.
-
- timestringRequired
CloudEvent timestamp.
- typestringRequired
Event type.
Can be one of: "com.qlik.v1.di-projects.di-tasks.completed"
- sourcestringRequired
Event source.
- useridstringRequired
Identifier for the user associated with the event.
- subjectstring
Subject of the event in the context of the event producer.
- tenantidstringRequired
Identifier for the tenant.
- dataschemastring
URI to the schema for the data attribute.
- extensionsobjectRequired
Qlik-specific extension attributes for the event.
extensions properties
- actorobjectRequired
Information about the actor.
- updatesarray of objectsRequired
List of updates related to the event.
-
- specversionstringRequired
CloudEvents spec version.
Can be one of: "1.0"
- datacontenttypestringRequired
Content type of the event payload.
com.qlik.v1.di-projects.di-tasks.completed
Example payload of the "Data task completed" event
{ "id": "02eae54e-396f-456c-bb6e-4ef1793504d9", "data": { "endTime": "2025-05-26T11:47:17.893Z", "dataTask": { "id": "salesstorage-guml", "name": "SalesStorage", "type": "STORAGE", "ownerId": "68064bc230525613f366b4f1", "spaceId": "68079b4004d7603de4991dcc", "projectId": "68172bbc045ae3756c1ae309", "description": "" }, "startTime": "2025-05-26T11:47:17.425Z", "startedBy": "6819cec4fb2b973f77b77383" }, "time": "2025-05-26T11:47:18.045Z", "type": "com.qlik.v1.di-projects.di-tasks.completed", "source": "com.qlik/data-app-design", "userid": "6819cec4fb2b973f77b77383", "subject": "some-subject", "tenantid": "dpmeH_c0vkwEzct90sXfcDSXBXRmRuU5", "dataschema": "https://example.com/schema", "extensions": { "actor": {}, "updates": [] }, "specversion": "1.0", "datacontenttype": "application/json"}
Publish an event when a data task has failed
Payload
object- idstringRequired
Unique CloudEvent identifier.
- dataobjectRequired
The event-specific data payload for a failed task.
data properties
- endTimestringRequired
Timestamp when the task ended (failed).
- dataTaskobjectRequired
dataTask properties
- idstringRequiredFilterable
Unique identifier for the data task.
- namestringRequiredFilterable
Name of the data task.
- typestringRequired
Can be one of: "LANDING""STORAGE""QVD_STORAGE""TRANSFORM""DATAMART""REGISTERED_DATA""REPLICATION""LAKE_LANDING""KNOWLEDGE_MART""FILE_BASED_KNOWLEDGE_MART""FILE_LANDING""ICEBERG_STORAGE""MIRROR"
- ownerIdstringRequiredFilterable
Identifier of the owner of the data task.
- spaceIdstringRequiredFilterable
Identifier of the space containing the data task.
- projectIdstringRequiredFilterable
Identifier of the project containing the data task.
- descriptionstring
Optional description of the data task.
-
- startTimestringRequired
Timestamp when the task started.
- startedBystringRequired
Identifier of the user who started the task.
- errorDetailsobjectRequired
Detailed information about an error.
errorDetails properties
- codestringRequired
- titlestringRequired
- sourcestringRequired
- statusintegerRequired
-
- errorMessagestringRequired
Summary of the error.
-
- timestringRequired
CloudEvent timestamp.
- typestringRequired
Event type.
Can be one of: "com.qlik.v1.di-projects.di-tasks.failed"
- sourcestringRequired
Event source.
- useridstringRequired
Identifier for the user associated with the event.
- subjectstring
Subject of the event in the context of the event producer.
- tenantidstringRequired
Identifier for the tenant.
- dataschemastring
URI to the schema for the data attribute.
- extensionsobjectRequired
Qlik-specific extension attributes for the event.
extensions properties
- actorobjectRequired
Information about the actor.
- updatesarray of objectsRequired
List of updates related to the event.
-
- specversionstringRequired
CloudEvents spec version.
Can be one of: "1.0"
- datacontenttypestringRequired
Content type of the event payload.
com.qlik.v1.di-projects.di-tasks.failed
Example payload of the "Data task failed" event
{ "id": "c946fcdf-8e9c-464f-80dd-a08483d31f36", "data": { "endTime": "2025-05-26T11:48:22.025Z", "dataTask": { "id": "bad_storage-lbx4", "name": "Bad Storage", "type": "STORAGE", "ownerId": "68064bc230525613f366b4f1", "spaceId": "68079b4004d7603de4991dcc", "projectId": "68172bbc045ae3756c1ae309", "description": "this storage has bad connection" }, "startTime": "2025-05-26T11:48:14.890Z", "startedBy": "6819cec4fb2b973f77b77383", "errorDetails": { "code": "QDI-DW-STORAGE-TABLE-IN-BATCH-ERROR", "title": "The batch run failed due to one or more tables that failed to load", "source": "com.qlik/qdi-app-manager", "status": 500 }, "errorMessage": "The following tables failed to load: 'Order Details, Customers'" }, "time": "2025-05-26T11:48:27.521Z", "type": "com.qlik.v1.di-projects.di-tasks.failed", "source": "com.qlik/data-app-design", "userid": "6819cec4fb2b973f77b77383", "subject": "some-subject", "tenantid": "dpmeH_c0vkwEzct90sXfcDSXBXRmRuU5", "dataschema": "https://example.com/schema", "extensions": { "actor": {}, "updates": [] }, "specversion": "1.0", "datacontenttype": "application/json"}
Publish an event when a data task is started
Payload
object- idstringRequired
Unique CloudEvent identifier.
- dataobjectRequired
The event-specific data payload for a started task.
data properties
- dataTaskobjectRequired
dataTask properties
- idstringRequiredFilterable
Unique identifier for the data task.
- namestringRequiredFilterable
Name of the data task.
- typestringRequired
Can be one of: "LANDING""STORAGE""QVD_STORAGE""TRANSFORM""DATAMART""REGISTERED_DATA""REPLICATION""LAKE_LANDING""KNOWLEDGE_MART""FILE_BASED_KNOWLEDGE_MART""FILE_LANDING""ICEBERG_STORAGE""MIRROR"
- ownerIdstringRequiredFilterable
Identifier of the owner of the data task.
- spaceIdstringRequiredFilterable
Identifier of the space containing the data task.
- projectIdstringRequiredFilterable
Identifier of the project containing the data task.
- descriptionstring
Optional description of the data task.
-
- startTimestringRequired
Timestamp when the task started.
- startedBystringRequired
Identifier of the user who started the task.
-
- timestringRequired
CloudEvent timestamp.
- typestringRequired
Event type.
Can be one of: "com.qlik.v1.di-projects.di-tasks.started"
- sourcestringRequired
Event source.
- useridstringRequired
Identifier for the user associated with the event.
- subjectstring
Subject of the event in the context of the event producer.
- tenantidstringRequired
Identifier for the tenant.
- dataschemastring
URI to the schema for the data attribute.
- extensionsobjectRequired
Qlik-specific extension attributes for the event.
extensions properties
- actorobjectRequired
Information about the actor.
- updatesarray of objectsRequired
List of updates related to the event.
-
- specversionstringRequired
CloudEvents spec version.
Can be one of: "1.0"
- datacontenttypestringRequired
Content type of the event payload.
com.qlik.v1.di-projects.di-tasks.started
Example payload of the "Data task started" event
{ "id": "8b6adb1b-d6dd-47bd-ab3d-17d231166ba7", "data": { "dataTask": { "id": "example_storage-lbx4", "name": "Example Storage", "type": "STORAGE", "ownerId": "68064bc230525613f366b4f1", "spaceId": "68079b4004d7603de4991dcc", "projectId": "68172bbc045ae3756c1ae309", "description": "this is an example storage" }, "startTime": "2025-05-26T11:48:14.890Z", "startedBy": "6819cec4fb2b973f77b77383" }, "time": "2025-05-26T11:48:15.004Z", "type": "com.qlik.v1.di-projects.di-tasks.started", "source": "com.qlik/data-app-design", "userid": "6819cec4fb2b973f77b77383", "subject": "some-subject", "tenantid": "dpmeH_c0vkwEzct90sXfcDSXBXRmRuU5", "dataschema": "https://example.com/schema", "extensions": { "actor": {}, "updates": [] }, "specversion": "1.0", "datacontenttype": "application/json"}
Publish an event when a data task has been stopped
Payload
object- idstringRequired
Unique CloudEvent identifier.
- dataobjectRequired
The event-specific data payload for a stopped task.
data properties
- dataTaskobjectRequired
dataTask properties
- idstringRequiredFilterable
Unique identifier for the data task.
- namestringRequiredFilterable
Name of the data task.
- typestringRequired
Can be one of: "LANDING""STORAGE""QVD_STORAGE""TRANSFORM""DATAMART""REGISTERED_DATA""REPLICATION""LAKE_LANDING""KNOWLEDGE_MART""FILE_BASED_KNOWLEDGE_MART""FILE_LANDING""ICEBERG_STORAGE""MIRROR"
- ownerIdstringRequiredFilterable
Identifier of the owner of the data task.
- spaceIdstringRequiredFilterable
Identifier of the space containing the data task.
- projectIdstringRequiredFilterable
Identifier of the project containing the data task.
- descriptionstring
Optional description of the data task.
-
- startTimestringRequired
Timestamp when the task was originally started.
- stoppedBystringRequired
Identifier of the user who stopped the task.
- stoppedTimestringRequired
Timestamp when the task was stopped.
-
- timestringRequired
CloudEvent timestamp.
- typestringRequired
Event type.
Can be one of: "com.qlik.v1.di-projects.di-tasks.stopped"
- sourcestringRequired
Event source.
- useridstringRequired
Identifier for the user associated with the event.
- subjectstring
Subject of the event in the context of the event producer.
- tenantidstringRequired
Identifier for the tenant.
- dataschemastring
URI to the schema for the data attribute.
- extensionsobjectRequired
Qlik-specific extension attributes for the event.
extensions properties
- actorobjectRequired
Information about the actor.
- updatesarray of objectsRequired
List of updates related to the event.
-
- specversionstringRequired
CloudEvents spec version.
Can be one of: "1.0"
- datacontenttypestringRequired
Content type of the event payload.
com.qlik.v1.di-projects.di-tasks.stopped
Example payload of the "Data task stopped" event
{ "id": "a1b2c3d4-e5f6-7890-1234-567890abcdef", "data": { "dataTask": { "id": "example_storage-lbx4", "name": "Example Storage", "type": "STORAGE", "ownerId": "68064bc230525613f366b4f1", "spaceId": "68079b4004d7603de4991dcc", "projectId": "68172bbc045ae3756c1ae309", "description": "this is an example storage" }, "startTime": "2025-05-26T11:48:14.890Z", "stoppedBy": "6819cec4fb2b973f77b77383", "stoppedTime": "2025-05-26T11:49:59.000Z" }, "time": "2025-05-26T11:50:00.000Z", "type": "com.qlik.v1.di-projects.di-tasks.stopped", "source": "com.qlik/data-app-design", "userid": "6819cec4fb2b973f77b77383", "subject": "some-subject", "tenantid": "dpmeH_c0vkwEzct90sXfcDSXBXRmRuU5", "dataschema": "https://example.com/schema", "extensions": { "actor": {}, "updates": [] }, "specversion": "1.0", "datacontenttype": "application/json"}