Skip to main content

AccountCorrelatedSource

The source the accounts are being correlated from.

Properties

NameTypeDescriptionNotes
typeEnum [ 'SOURCE' ]The DTO type of the source the accounts are being correlated from.[required]
idstrThe ID of the source the accounts are being correlated from.[required]
namestrDisplay name of the source the accounts are being correlated from.[required]
}

Example

from sailpoint.v2024.models.account_correlated_source import AccountCorrelatedSource

account_correlated_source = AccountCorrelatedSource(
type='SOURCE',
id='2c9180835d191a86015d28455b4b232a',
name='HR Active Directory'
)

[Back to top]