Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents an identity's information used in identity correlation reports. Contains the anchor property, matching property, identity type, and additional details for a source or target identity.
Properties
| Property | Type | Description |
|---|---|---|
| anchor | attributeInfo | The anchor property that uniquely identifies the identity in its directory. |
| details | detailsInfo | Additional details about the identity. |
| identityType | String | The type of identity, such as user. |
| matchingProperty | attributeInfo | The property used to match identities across directories. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.identityInfo",
"anchor": {
"@odata.type": "microsoft.graph.attributeInfo",
"name": "String",
"value": "String"
},
"matchingProperty": {
"@odata.type": "microsoft.graph.attributeInfo",
"name": "String",
"value": "String"
},
"identityType": "String",
"details": {
"@odata.type": "microsoft.graph.detailsInfo"
}
}