List superUserFinding objects
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.
Get a list of the superUserFinding objects and their properties.
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | Not supported. | Not supported. |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | PermissionsAnalytics.Read.OwnedBy | Not available. |
HTTP request
List AWS super users:
GET /identityGovernance/permissionsAnalytics/aws/findings/microsoft.graph.superUserFinding
List Azure super users:
GET /identityGovernance/permissionsAnalytics/azure/findings/microsoft.graph.superUserFinding
List GCP super users:
GET /identityGovernance/permissionsAnalytics/gcp/findings/microsoft.graph.superUserFinding
Optional query parameters
This method supports the $filter
and $orderby
OData query parameters to help customize the response. For general information, see OData query parameters.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a collection of superUserFinding objects in the response body.
Examples
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/identityGovernance/permissionsAnalytics/gcp/findings/microsoft.graph.superUserFinding
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/identityGovernance/$metadata#permissionsAnalytics/gcp/findings/microsoft.graph.superUserFinding",
"value": [
{
"@odata.type": "graph.superUserFinding",
"id": "c3VwZXJVc2VyRmluZGluZzE",
"identity": {
"@odata.type": "graph.gcpUser",
"id": "dGVtcF91c2VyXzFAZ21haWwuY29t",
"externalId": "temp_user_1@gmail.com",
"displayName": "temp_user_1",
"source": {
"@odata.type": "graph.gsuiteSource",
"identityProviderType": "gsuite",
"domain": "gmail.com"
},
"authorizationSystem": {
"@odata.type": "graph.gcpAuthorizationSystem",
"id": "{Id}",
"authorizationSystemId": "carbide-bonsai-205017",
"authorizationSystemName": "contoso-staging",
"authorizationSystemType": "gcp"
}
},
"actionSummary": {
"assigned": 10532,
"exercised": 0,
"available": 10542
},
"identityDetails": {
"createdDateTime": "String (timestamp)",
"lastActiveDateTime": "String (timestamp)"
},
"permissionsCreepIndex": {
"score": 95
},
"createdDateTime": "2020-10-11T20:11:45.6711Z",
"identityDetails": {
"createdDateTime": "2021-04-12T20:34:24Z",
"lastActiveDateTime": "2021-10-30T03:21:05Z"
}
}
]
}