Skip to main content

Emailnotificationoption

This is used for representing email configuration for a lifecycle state

Properties

NameTypeDescriptionNotes
notify_managersboolIf true, then the manager is notified of the lifecycle state change.[optional] [default to False]
notify_all_adminsboolIf true, then all the admins are notified of the lifecycle state change.[optional] [default to False]
notify_specific_usersboolIf true, then the users specified in "emailAddressList" below are notified of lifecycle state change.[optional] [default to False]
email_address_list[]strList of user email addresses. If "notifySpecificUsers" option is true, then these users are notified of lifecycle state change.[optional]
}

Example

from sailpoint.lifecycle_states.models.emailnotificationoption import Emailnotificationoption

emailnotificationoption = Emailnotificationoption(
notify_managers=True,
notify_all_admins=True,
notify_specific_users=True,
email_address_list=["test@test.com","test2@test.com"]
)

[Back to top]