Skip to main content

Sourcecreated

Properties

NameTypeDescriptionNotes
idstrThe unique ID of the source.[required]
namestrHuman friendly name of the source.[required]
typestrThe connection type.[required]
createddatetimeThe date and time the source was created.[required]
connectorstrThe connector type used to connect to the source.[required]
actorSourcecreatedActor[required]
}

Example

from sailpoint.triggers.models.sourcecreated import Sourcecreated

sourcecreated = Sourcecreated(
id='2c9180866166b5b0016167c32ef31a66',
name='Test source',
type='DIRECT_CONNECT',
created='2021-03-29T22:01:50.474Z',
connector='active-directory',
actor=sailpoint.triggers.models.sourcecreated_actor.sourcecreated_actor(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20648',
name = 'William Wilson', )
)

[Back to top]