Skip to main content

Sourceaccountdeleted

Properties

NameTypeDescriptionNotes
uuidstrSource unique identifier for the identity. UUID is generated by the source system.[optional]
idstrSailPoint generated unique identifier.[required]
native_identifierstrUnique ID of the account on the source.[required]
source_idstrThe ID of the source.[required]
source_namestrThe name of the source.[required]
identity_idstrThe ID of the identity that is correlated with this account.[required]
identity_namestrThe name of the identity that is correlated with this account.[required]
attributesmap[string]objectThe attributes of the account. The contents of attributes depends on the account schema for the source.[required]
}

Example

from sailpoint.triggers.models.sourceaccountdeleted import Sourceaccountdeleted

sourceaccountdeleted = Sourceaccountdeleted(
uuid='b7264868-7201-415f-9118-b581d431c688',
id='ee769173319b41d19ccec35ba52f237b',
native_identifier='E009',
source_id='2c918082814e693601816e09471b29b6',
source_name='Active Directory',
identity_id='ee769173319b41d19ccec6c235423237b',
identity_name='john.doe',
attributes={"firstname":"John","lastname":"Doe","email":"john.doe@gmail.com","department":"Sales","displayName":"John Doe","created":"2020-04-27T16:48:33.597Z","employeeNumber":"E009","uid":"E009","inactive":"true","phone":null,"identificationNumber":"E009"}
)

[Back to top]