Web integrations
Published when a web integration 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
Web integration details.
data properties
- idstringRequired
Web integration identifier.
- namestringRequired
Web integration name.
- validOriginsarray of stringsRequired
List of hostname(s) associated with the tenant.
-
com.qlik.web-integration.created
Example payload of the "Web integration created" event
{ "id": "A234-1234-1234", "time": "2026-01-01T12:00:00Z", "type": "com.qlik.web-integration.created", "source": "com.qlik/my-service", "specversion": "1.0", "datacontenttype": "application/json", "userid": "UZhiEfgW2bLd7HgR-jjzAh6VnicipweT", "tenantid": "VZhiEfgW2bLd7HgR-jjzAh6VnicipweT", "data": { "id": "id123", "name": "Api client 1", "validOrigins": [ "http://unicorn.com", "http://foo.example" ] }}Published when a web integration 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
Web integration details.
data properties
- idstringRequired
Web integration identifier.
-
com.qlik.web-integration.deleted
Example payload of the "Web integration deleted" event
{ "id": "A234-1234-1234", "time": "2026-01-01T12:00:00Z", "type": "com.qlik.web-integration.deleted", "source": "com.qlik/my-service", "specversion": "1.0", "datacontenttype": "application/json", "userid": "UZhiEfgW2bLd7HgR-jjzAh6VnicipweT", "tenantid": "VZhiEfgW2bLd7HgR-jjzAh6VnicipweT", "data": { "id": "id123" }}Published when a web integration 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
Web integration details.
data properties
- idstringRequired
Web integration identifier.
- 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.
-
-
com.qlik.web-integration.updated
Example payload of the "Web integration updated" event
{ "id": "A234-1234-1234", "time": "2026-01-01T12:00:00Z", "type": "com.qlik.web-integration.updated", "source": "com.qlik/my-service", "specversion": "1.0", "datacontenttype": "application/json", "userid": "UZhiEfgW2bLd7HgR-jjzAh6VnicipweT", "tenantid": "VZhiEfgW2bLd7HgR-jjzAh6VnicipweT", "data": { "id": "id123", "updates": [ { "newValue": "Web Integration 2", "oldValue": "Web Integration 1", "property": "name" } ] }}