New account provisioning template

Hi All,
I am trying to generate an email to user whenever account gets provisioned for the user.
ex: If a user request for AD access , account will be provisioned and email notification has to be sent to the same user.

I tried using new account provisioning email template and enabled accountCreateNotification object for the source.


tried with notifyList as identity.WorkEmail but no luck .

what variable value has to be entered in “notifyList” as it has to capture email of the every user who request for access

can someone suggest pls

Hey @nidhipriya,

Usually identity attributes are created in the camel case format.
Example: identity.workEmail

Coming back to the attribute is this “Work Emai” the default attribute then it will be identity.email else if its a custom attribute unique to your tenant it will be identity.workEmail.

Regards,
Aman

I would agree with @amansingh in checking that you are referencing the right variable first.

If that doesn’t resolve the issue, let us know at least if WorkEmail is a custom attribute.

The notifyList is a list of static email addresses all account creation notifications for the source should be sent to. It does not support variables like you are trying to do.

However, setting the notifyAccountOwner parameter to true will send an email notification to the identity the account was created for via their work email. This seems to be what you are trying to achieve.

SailPoint doesn’t have documentation for the values within accountCreateNotification yet, but you can sort of piece them together via the documentation for the previous API this configuration replaced:

and the corresponding API deprecation post on this forum:

Thanks @nsorlien - it worked for me