Skip to main content

IdentityPreviewResponse

Properties

NameTypeDescriptionNotes
identityIdentityPreviewResponseIdentity[optional]
preview_attributes[]IdentityAttributePreview[optional]
}

Example

from sailpoint.v2024.models.identity_preview_response import IdentityPreviewResponse

identity_preview_response = IdentityPreviewResponse(
identity=sailpoint.v2024.models.identity_preview_response_identity.IdentityPreviewResponse_identity(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20642',
name = 'Michael Michaels', ),
preview_attributes=[
sailpoint.v2024.models.identity_attribute_preview.IdentityAttributePreview(
name = 'email',
value = '[email protected]',
previous_value = '[email protected]',
error_messages = {locale=en-US, localeOrigin=DEFAULT, text=Error Message}, )
]
)

[Back to top]