Skip to main content

AccountAction

Properties

NameTypeDescriptionNotes
actionEnum [ 'ENABLE', 'DISABLE' ]Describes if action will be enabled or disabled[optional]
source_ids[]strList of source IDs. The sources must have the ENABLE feature or flat file source. See "/sources" endpoint for source features.[optional]
}

Example

from sailpoint.beta.models.account_action import AccountAction

account_action = AccountAction(
action='ENABLE',
source_ids=[2c918084660f45d6016617daa9210584, 2c918084660f45d6016617daa9210500]
)

[Back to top]