Skip to main content

Intelidentityambiguousbody

Properties

NameTypeDescriptionNotes
DetailCodeEnum [ "IDC_IDENTITY_AMBIGUOUS" ]Constant detail code indicating that more than one identity matched the filter.[required]
MessageStringOptional explanatory text describing why the filter was considered ambiguous.[optional]
Candidates[]IntelidentityambiguouscandidateCollection of identities that matched the ambiguous filter expression.[required]

Examples

  • Prepare the resource
$Intelidentityambiguousbody = Initialize-Intelidentityambiguousbody  -DetailCode IDC_IDENTITY_AMBIGUOUS `
-Message Multiple identities matched the supplied SCIM filter expression. `
-Candidates [{"id":"ef38f94347e94562b5bb8424a56397d8","displayName":"Jane Example"},{"id":"ef38f94347e94562b5bb8424a56397d9","displayName":"J. Example"}]
  • Convert the resource to JSON
$Intelidentityambiguousbody | ConvertTo-JSON

[Back to top]