Events emitted when group settings are updated in a Qlik Cloud tenant. These events enable monitoring of group configuration changes across your tenant.

Preferred events

These events replace the legacy Group settings events. Use these events for all new implementations.

Group settings updated

Published when the group settings are updated.

Payload

object
  • idstring
    Required

    Identifies the event.

  • timestring

    Timestamp of when the occurrence happened. Must adhere to RFC 3339.

  • typestring
    Required

    Unique identifier for the event type.

  • sourcestring
    Required

    Identifies the context in which an event happened.

  • specversionstring
    Required

    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.

  • tenantidstring
    Required

    Unique identifier for the tenant related to the event.

  • dataobject

    The event data payload containing the updated group settings and the _updates field-level change set.

    Show data properties
    • createdstring

      Timestamp when the group settings record was created.

    • tenantIdstring
      Required

      Unique identifier for the tenant.

    • lastUpdatedstring

      Timestamp when the group settings record was last updated.

    • syncIdpGroupsbooleanDeprecated

      Deprecated. Previously controlled whether groups from the identity provider were synchronized into Qlik Cloud. No longer used; group synchronization is now governed by autoCreateGroups.

    • autoCreateGroupsboolean
      Required

      Whether to automatically create groups in Qlik Cloud when they appear in the identity provider.

    • _updatesarray of objects

      Collection of updates performed on the resource.

      Show _updates properties
      • pathstring

        Field that was updated.

      • newValueany

        JSON value of the field after the update. The value can be a scalar, array, object, or null, depending on the field.

      • oldValueany

        JSON value of the field before the update. The value can be a scalar, array, object, or null, depending on the field.

com.qlik.core.group-setting.updated

Example payload of the "Group settings updated" event

{
"id": "A234-1234-1234",
"time": "2018-04-05T17:31:00Z",
"type": "com.qlik.core.group-setting.updated",
"source": "com.qlik/identities",
"specversion": "1.0",
"datacontenttype": "application/json",
"userid": "VZhiEfgW2bLd7HgR-jjzAh6VnicipweT",
"tenantid": "VZhiEfgW2bLd7HgR-jjzAh6VnicipweT",
"data": {
"created": "2018-10-30T07:06:22Z",
"tenantId": "TiQ8GPVr8qI714Lp5ChAAFFaU24MJy69",
"lastUpdated": "2018-10-30T07:06:22Z",
"syncIdpGroups": false,
"autoCreateGroups": false,
"_updates": [
{
"path": "/attributePath",
"newValue": "Dan",
"oldValue": "Dylan"
}
]
}
}