Files
developer.sailpoint.com/docs/extensibility/event-triggers/available/identity-attribute-changed.md
2024-06-06 15:58:49 -05:00

2.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, description, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords description slug tags
identity-attribute-changed Identity Attributes Changed Identity Attributes Changed Identity Attributes Changed identityAttributesChanged
event
trigger
identity
attributes
changed
available
Fires after one or more identity attributes changed. /extensibility/event-triggers/triggers/identity-attribute-changed
Event Triggers
Available Event Triggers
Fire and Forget

Event Context

Flow

Identity Attribute Changed events occur when any attributes aggegrated from an authoritative source differ from the current attributes for an identity during an identity refresh. See Configuring Correlation for more information.

This event trigger provides a flexible way to extend Joiner-Mover-Leaver processes. This provides more proactive governance and ensures users can quickly get necessary access when they enter your organization.

:::info

This event trigger doesn't detect an identity's change in lifecycle state from 'null' to 'active', so it's recommended that you set an identity's lifecycle state when it's created. You can then use the Identity Created trigger to detect that change to 'active' for Joiners.

:::

Some uses cases for this trigger include the following:

  • Notify an administrator or system to take the appropriate provisioning actions as part of the Mover workflow.
  • Notify a system to trigger another action, like triggering a certification campaign when an identity's manager changes, for example.

This is an example input from this trigger:

{
  "identity": {
    "type": "IDENTITY",
    "id": "2c91808568c529c60168cca6f90c1313",
    "name": "William Wilson"
  },
  "changes": [
    {
      "attribute": "department",
      "oldValue": "sales",
      "newValue": "marketing"
    }
  ]
}