Edit

Share via


reports: getApplicationUsageAnalytics

Namespace: microsoft.graph.networkaccess

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 collection of application usage analytics data points based on aggregated traffic logs for a specified time period, providing daily breakdown of usage between cloud and enterprise applications in Global Secure Access.

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

Important

In delegated scenarios with work or school accounts, the signed-in user must be assigned a supported Microsoft Entra role or a custom role with a supported role permission. The following least privileged roles are supported for this operation.

  • Global Reader
  • Global Secure Access Log Reader
  • Global Secure Access Administrator
  • Security Administrator

HTTP request

GET /networkAccess/reports/getApplicationUsageAnalytics(startDateTime={startDateTime},endDateTime={endDateTime},aggregatedBy={aggregatedBy})

Function parameters

In the request URL, provide the following query parameters with values.

Parameter Type Description
startDateTime DateTimeOffset The date and time when the reporting period begins.
endDateTime DateTimeOffset The date and time when the reporting period ends.
aggregatedBy microsoft.graph.networkaccess.aggregationFilter The aggregation type for the returned data. The possible values are: transactions, users, devices, unknownFutureValue, bytesSent, bytesReceived, totalBytes. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: bytesSent, bytesReceived, totalBytes.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
include-unknown-enum-members Optional. Add this header to retrieve the enumeration members after the sentinel value.

Request body

Don't supply a request body for this method.

Response

If successful, this function returns a 200 OK response code and a microsoft.graph.networkaccess.applicationAnalyticsUsagePoint collection in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/networkAccess/reports/getApplicationUsageAnalytics(startDateTime={startDateTime},endDateTime={endDateTime},aggregatedBy={aggregatedBy})

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/$metadata#Collection(microsoft.graph.networkaccess.applicationAnalyticsUsagePoint)",
  "value":[
     {
        "timeStampDateTime":"2023-08-20T00:00:00Z",
        "totalCount":150,
        "enterpriseAppsCount":85,
        "cloudAppsCount":65
     },
     {
        "timeStampDateTime":"2023-08-21T00:00:00Z",
        "totalCount":175,
        "enterpriseAppsCount":95,
        "cloudAppsCount":80
     }
  ]
}