List inboundSharedUserProfiles
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.
Retrieve the properties of all inboundSharedUserProfiles.
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.All, 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
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 collection in the response body.
Examples
Request
GET https://graph.microsoft.com/beta/directory/inboundSharedUserProfiles
Response
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": [
{
"userId":"c228b2ae-c4fb-4eda-9620-7e73dddd1cac",
"userPrincipalName":"bob@contoso.onmicrosoft.com",
"displayName":"Bob",
"homeTenantId":"486fb458-9474-4c44-896b-b30942d055f0"
},
{
"userId":"5586b2ae-c4fb-4eda-9620-7e73dddd1cac",
"userPrincipalName":"alice@fabrikam.com",
"displayName":"Alice",
"homeTenantId":"385ab357-9774-4c44-896b-a35942d755e8"
}
]
}
Feedback
Submit and view feedback for