Skip to main content

Sourceitemref

Properties

NameTypeDescriptionNotes
source_idstrThe id for the source on which account selections are made[optional]
accounts[]AccountitemrefA list of account selections on the source. Currently, only one selection per source is supported.[optional]
}

Example

from sailpoint.access_requests.models.sourceitemref import Sourceitemref

sourceitemref = Sourceitemref(
source_id='cb89bc2f1ee6445fbea12224c526ba3a',
accounts=[
sailpoint.access_requests.models.accountitemref.accountitemref(
account_uuid = '{fab7119e-004f-4822-9c33-b8d570d6c6a6}',
native_identity = 'CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local', )
]
)

[Back to top]