[NERM] How to Detect Modified Attributes in an Update Workflow

I’m working on an update identity attributes workflow, where I need to determine which specific attributes were modified during form submission, because I would like to include the modified attributes in a dynamic email template.

Additionally, I would like to include the identity’s manager in CC for an email notification step.
Is it possible to dynamically reference the manager’s email (e.g., $.identity.manager.email) in the CC field of the “Send Email” action?

Hi @carmine_guarracino

Yes, you can dynamically reference the manager’s email in the CC field using JSONPath like $.identity.manager.email, provided the manager object is populated in the workflow context. For tracking modified attributes, compare the old and new values of identity attributes in a script action during the workflow execution. You can store the changed attributes in a variable and use it in your email template for dynamic content. Make sure your form submission feeds the identity object or changes clearly into the workflow context. This enables precise email customization and visibility for both the user and their manager.

Thank you
Manvitha.Nalabolu

I haven’t found a way to save a variable modified by a form (NERM). Could you point me to where I can find this, or provide some documentation?

Let me check. And ill let you know

I found a way to understand which attributes were being changed in the form.

Do you have any news about cc instead?