Skip to main content

IntelIdentityNotFoundBody

Properties

NameTypeDescriptionNotes
detail_codeEnum [ 'IDC_IDENTITY_NOT_FOUND' ]Constant detail code indicating that no identity matched the supplied filter.[required]
tracking_idstrUnique tracking id for the error.[optional]
messages[]ErrorMessageDtoGeneric localized reason for error[optional]
causes[]ErrorMessageDtoPlain-text descriptive reasons to provide additional detail to the text provided in the messages field[optional]
}

Example

from sailpoint.intelligence.models.intel_identity_not_found_body import IntelIdentityNotFoundBody

intel_identity_not_found_body = IntelIdentityNotFoundBody(
detail_code='IDC_IDENTITY_NOT_FOUND',
tracking_id='e7eab60924f64aa284175b9fa3309599',
messages=[
sailpoint.intelligence.models.error_message_dto.Error Message Dto(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'The request was syntactically correct but its content is semantically invalid.', )
],
causes=[
sailpoint.intelligence.models.error_message_dto.Error Message Dto(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'The request was syntactically correct but its content is semantically invalid.', )
]
)

[Back to top]