Skip to main content

Intelidentityambiguousbody

Properties

NameTypeDescriptionNotes
detail_codeEnum [ 'IDC_IDENTITY_AMBIGUOUS' ]Constant detail code indicating that more than one identity matched the filter.[required]
messagestrOptional explanatory text describing why the filter was considered ambiguous.[optional]
candidates[]IntelidentityambiguouscandidateCollection of identities that matched the ambiguous filter expression.[required]
}

Example

from sailpoint.intelligence.models.intelidentityambiguousbody import Intelidentityambiguousbody

intelidentityambiguousbody = Intelidentityambiguousbody(
detail_code='IDC_IDENTITY_AMBIGUOUS',
message='Multiple identities matched the supplied SCIM filter expression.',
candidates=[{"id":"ef38f94347e94562b5bb8424a56397d8","displayName":"Jane Example"},{"id":"ef38f94347e94562b5bb8424a56397d9","displayName":"J. Example"}]
)

[Back to top]