Skip to main content

Accountinforef

Properties

NameTypeDescriptionNotes
uuidstrThe uuid for the account, available under the 'objectguid' attribute[optional]
native_identitystrThe 'distinguishedName' attribute for the account[optional]
typeDtotype[optional]
idstrThe account id[optional]
namestrThe account display name[optional]
}

Example

from sailpoint.access_requests.models.accountinforef import Accountinforef

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]