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

These events are available for consumption via:

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

    Group settings for a tenant.

    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
    • 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.

      • newValuestring

        Value of the field after the update.

      • oldValuestring

        Value of the field before the update.

com.qlik.v1.group-setting.updated

Example payload of the "Group settings updated" event

{
"id": "A234-1234-1234",
"time": "2018-10-30T07:06:22Z",
"type": "com.qlik.v1.group-setting.updated",
"source": "com.qlik/identities",
"specversion": "1.0",
"datacontenttype": "string",
"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"
}
]
}
}