Auth settings updated

Published when auth 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

    Contains the updated authentication settings and field-level changes.

    Show data properties
    • idstring
      Required

      The ID of the Auth Settings.

    • tenantIdstring
      Required

      Unique identifier for the tenant the Auth Settings belongs to.

    • maxUserSessionLifespanMinutesinteger
      Required

      Max session lifespan in minutes.

    • dcrAllowedAuthenticationMethodsarray of strings

      The allowed authentication methods for dynamic client registration.

      Values may be any of: "none""client_secret"

    • dynamicClientRegistrationEnabledboolean

      Indicates whether dynamic client registration is enabled. Only present when the dynamic client registration feature flag is enabled.

    • userSessionInactivityTimeoutMinutesinteger
      Required

      Max session inactivity time in minutes.

    • _updatesarray of objects

      An attribute update object that contains the change of an attribute.

      Show _updates properties
      • pathstring
        Required

        The updated attribute path.

      • newValueany
        Required

        The new JSON value of the updated attribute.

      • oldValueany
        Required

        The old JSON value of the updated attribute.

com.qlik.core.auth-settings.updated

Example payload of the "Auth settings updated" event

{
"id": "A234-1234-1234",
"time": "2026-04-05T17:31:00Z",
"type": "com.qlik.core.auth-settings.updated",
"source": "com.qlik/iam-resources",
"specversion": "1.0",
"datacontenttype": "application/json",
"userid": "VZhiEfgW2bLd7HgR-jjzAh6VnicipweT",
"tenantid": "VZhiEfgW2bLd7HgR-jjzAh6VnicipweT",
"data": {
"id": "5be59decca62aa00097268a4",
"tenantId": "VZhiEfgW2bLd7HgR-jjzAh6VnicipweT",
"maxUserSessionLifespanMinutes": 1440,
"dcrAllowedAuthenticationMethods": [
"client_secret"
],
"dynamicClientRegistrationEnabled": true,
"userSessionInactivityTimeoutMinutes": 60,
"_updates": [
{
"path": "/userSessionInactivityTimeoutMinutes",
"newValue": 30,
"oldValue": 60
}
]
}
}