Skip to main content

AccountInfoDto

Properties

NameTypeDescriptionNotes
native_identitystrThe unique ID of the account generated by the source system[optional]
display_namestrDisplay name for this account[optional]
uuidstrUUID associated with this account[optional]
}

Example

from sailpoint.v2024.models.account_info_dto import AccountInfoDto

account_info_dto = AccountInfoDto(
native_identity='CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com',
display_name='Abby.Smith',
uuid='{ad9fc391-246d-40af-b248-b6556a2b7c01}'
)

[Back to top]