Intelidentityambiguousbody
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| detail_code | Enum [ 'IDC_IDENTITY_AMBIGUOUS' ] | Constant detail code indicating that more than one identity matched the filter. | [required] |
| message | str | Optional explanatory text describing why the filter was considered ambiguous. | [optional] |
| candidates | []Intelidentityambiguouscandidate | Collection 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"}]
)