mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 04:19:42 +00:00
24 lines
844 B
YAML
24 lines
844 B
YAML
type : object
|
|
description: This is used for representing email configuration for a lifecycle state
|
|
properties:
|
|
notifyManagers:
|
|
type: boolean
|
|
example: true
|
|
description: If true, then the manager is notified of the lifecycle state change.
|
|
notifyAllAdmins:
|
|
type: boolean
|
|
example: true
|
|
description: If true, then all the admins are notified of the lifecycle state change.
|
|
notifySpecificUsers:
|
|
type: boolean
|
|
example: true
|
|
description: If true, then the users specified in "emailAddressList" below are notified of lifecycle state change.
|
|
emailAddressList:
|
|
type: array
|
|
example: ["test@test.com", "test2@test.com"]
|
|
items:
|
|
type: string
|
|
description: >-
|
|
List of user email addresses. If "notifySpecificUsers" option is true, then these users are notified of lifecycle state change.
|
|
|