Get inboundSharedUserProfile

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.

Read the properties of an inboundSharedUserProfile.

This API is supported in the following national cloud deployments.

Global service US Government L4 US Government L5 (DOD) China operated by 21Vianet

Permissions

One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.

Permission type Permissions (from least to most privileged)
Delegated (work or school account) CrossTenantUserProfileSharing.Read, CrossTenantUserProfileSharing.Read.All, CrossTenantUserProfileSharing.ReadWrite, CrossTenantUserProfileSharing.ReadWrite.All
Delegated (personal Microsoft account) Not applicable
Application CrossTenantUserProfileSharing.Read.All, CrossTenantUserProfileSharing.ReadWrite.All

For delegated scenarios, the calling user must also be assigned at least the Global Reader Azure AD role.

HTTP request

GET /directory/inboundSharedUserProfiles/{userId}

Request headers

Name Description
Authorization Bearer {token}. Required.

Request body

Do not supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a inboundSharedUserProfile object in the response body.

Examples

Request

GET https://graph.microsoft.com/beta/directory/inboundSharedUserProfiles/c228b2ae-c4fb-4eda-9620-7e73dddd1cac

Response

HTTP/1.1 200 OK
Content-Type: application/json

{
    "userId": "c228b2ae-c4fb-4eda-9620-7e73dddd1cac",
    "userPrincipalName": "bob@contoso.com",
    "displayName": "Bob",
    "homeTenantId": "486fb458-9474-4c44-896b-b30942d055f0"
}