Skip to main content

Identityattributepreview

Properties

NameTypeDescriptionNotes
namestrName of the attribute that is being previewed.[optional]
valuestrValue that was derived during the preview.[optional]
previous_valuestrThe value of the attribute before the preview.[optional]
error_messages[]ErrormessagedtoList of error messages[optional]
}

Example

from sailpoint.identity_profiles.models.identityattributepreview import Identityattributepreview

identityattributepreview = Identityattributepreview(
name='email',
value='email@mail.com',
previous_value='oldEmail@mail.com',
error_messages={"locale":"en-US","localeOrigin":"DEFAULT","text":"Error Message"}
)

[Back to top]