Auth settings
Published when auth settings are 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
Contains the updated authentication settings and field-level changes.
data properties
- idstringRequired
The ID of the Auth Settings.
- tenantIdstringRequired
Unique identifier for the tenant the Auth Settings belongs to.
- maxUserSessionLifespanMinutesintegerRequired
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.
- userSessionInactivityTimeoutMinutesintegerRequired
Max session inactivity time in minutes.
- _updatesarray of objects
An attribute update object that contains the change of an attribute.
_updates properties
- pathstringRequired
The updated attribute path.
- newValueanyRequired
The new JSON value of the updated attribute.
- oldValueanyRequired
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 } ] }}