List applicationSignInDetailedSummary

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 applicationSignInDetailedSummary objects.

This API is available in the following national cloud deployments.

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

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) Reports.Read.All Not available.
Delegated (personal Microsoft account) Not supported. Not supported.
Application Not supported. Not supported.

HTTP request

GET /reports/applicationSignInDetailedSummary

Optional query parameters

This method supports the $filter and $top 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 applicationSignInDetailedSummary objects in the response body.

Examples

Request

GET https://graph.microsoft.com/beta/reports/applicationSignInDetailedSummary

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/$metadata#reports/applicationSignInDetailedSummary",
    "value": [
        {
            "id": "ce0d6f77-04d2-49f6-bfcc-ad101cd4b69f",
            "appId": "de8bc8b5-d9f9-48b1-a8ad-b748da725064",
            "appDisplayName": "Graph Explorer",
            "aggregatedEventDateTime": "2021-12-28T00:00:00Z",
            "signInCount": 5,
            "status": {
                "errorCode": 0,
                "failureReason": null,
                "additionalDetails": null
            }
        },
        {
            "id": "59397b28-0dc5-4270-b869-24714ea4aedb",
            "appId": "de8bc8b5-d9f9-48b1-a8ad-b748da725064",
            "appDisplayName": "Graph Explorer",
            "aggregatedEventDateTime": "2021-12-06T00:00:00Z",
            "signInCount": 5,
            "status": {
                "errorCode": 650057,
                "failureReason": "Invalid resource. The client has requested access to a resource which is not listed in the requested permissions in the client's application registration. Client app ID: {appId}({appName}). Resource value from request: {resource}. Resource app ID: {resourceAppId}. List of valid resources from app registration: {regList}.",
                "additionalDetails": null
            }
        },
        {
            "id": "29d5acee-e7c8-4565-96eb-f89719cb4d9f",
            "appId": "c44b4083-3bb0-49c1-b47d-974e53cbdf3c",
            "appDisplayName": "Azure Portal",
            "aggregatedEventDateTime": "2021-12-28T00:00:00Z",
            "signInCount": 1,
            "status": {
                "errorCode": 0,
                "failureReason": null,
                "additionalDetails": null
            }
        },
        {
            "id": "88348b99-6c59-47db-bc70-2011d80e3bd6",
            "appId": "89bee1f7-5e6e-4d8a-9f3d-ecd601259da7",
            "appDisplayName": "Office365 Shell WCSS-Client",
            "aggregatedEventDateTime": "2021-11-30T00:00:00Z",
            "signInCount": 3,
            "status": {
                "errorCode": 0,
                "failureReason": null,
                "additionalDetails": null
            }
        }
    ]
}