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.access_requests.models.sourceaccountselections import Sourceaccountselections

sourceaccountselections = Sourceaccountselections(
type='IDENTITY',
id='3ac3c43785a845fa9820b0c1ac767cd5',
name='Test Source_Name',
accounts=[
sailpoint.access_requests.models.accountinforef.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]