Skip to main content

SourcecreatedActor

Identity who created the source.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]DTO type of identity who created the source.[required]
idstrID of identity who created the source.[required]
namestrDisplay name of identity who created the source.[required]
}

Example

from sailpoint.triggers.models.sourcecreated_actor import SourcecreatedActor

sourcecreated_actor = SourcecreatedActor(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20648',
name='William Wilson'
)

[Back to top]