Skip to main content

SourceAccountSelections

Properties

NameTypeDescriptionNotes
typeDtoType[optional]
idstrThe source id[optional]
namestrThe source name[optional]
accounts[]AccountInfoRefThe accounts information for a particular source in the requested item[optional]
}

Example

from sailpoint.v2025.models.source_account_selections import SourceAccountSelections

source_account_selections = SourceAccountSelections(
type='IDENTITY',
id='3ac3c43785a845fa9820b0c1ac767cd5',
name='Test Source_Name',
accounts=[
sailpoint.v2025.models.account_info_ref.AccountInfoRef(
uuid = '{fab7119e-004f-4822-9c33-b8d570d6c6a6}',
native_identity = 'CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local',
type = 'IDENTITY',
id = 'f19d168c27374fd1aff3b483573f997f',
name = 'UserAccount.761a2248b', )
]
)

[Back to top]