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 a cross-organization identity mapping for a user during a tenant-to-tenant (cross-tenant) migration. This resource defines the relationship between a source user in the originating organization and its corresponding target user in the destination organization. It includes source and target user identities, migration metadata, and user type information.
Inherits from sharePointIdentityMapping.
Methods
| Method | Return type | Description |
|---|---|---|
| Get | sharePointUserIdentityMapping | Retrieve a specific user identity mapping by the source user principal name (UPN). |
| Update | sharePointUserIdentityMapping | Perform delta patch operations on user identity mappings for cross-organization migration. |
Properties
| Property | Type | Description |
|---|---|---|
| id | String | Unique identifier for the user identity mapping. Base64-encoded String. Generated automatically. Inherited from sharePointIdentityMapping. |
| sourceOrganizationId | Guid | The unique identifier of the source organization in the migration. Inherited from sharePointIdentityMapping. |
| sourceUserIdentity | userIdentity | The identity information of the source user in the originating organization. Contains the source user's principal name. |
| targetUserIdentity | userIdentity | The identity information of the target user in the destination organization. Contains the target user's principal name. |
| targetUserMigrationData | sharePointIdentityMappingUserMigrationData | Additional migration-specific data for the target user. Contains the email address for the user in the destination organization. |
| userType | sharePointIdentityMappingUserType | Indicates the type of user. The possible values are: none, regularUser, adminUser, guestUser, unknownFutureValue. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.sharePointUserIdentityMapping",
"id": "String (identifier)",
"sourceOrganizationId": "Guid",
"sourceUserIdentity": {"@odata.type": "microsoft.graph.userIdentity"},
"targetUserIdentity": {"@odata.type": "microsoft.graph.userIdentity"},
"targetUserMigrationData": {"@odata.type": "microsoft.graph.sharePointIdentityMappingUserMigrationData"},
"userType": "String"
}