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]
messagestrOptional explanatory text describing why no identity was found.[optional]
}

Example

from sailpoint.intelligence.models.intelidentitynotfoundbody import Intelidentitynotfoundbody

intelidentitynotfoundbody = Intelidentitynotfoundbody(
detail_code='IDC_IDENTITY_NOT_FOUND',
message='No identity matched the supplied SCIM filter expression.'
)

[Back to top]