Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 estimated connectivity metrics based on the percentage of successful synthetic connections between organization devices and Exchange Online that might include issues outside the control of Microsoft.
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) | ServiceActivity-Exchange.Read.All | Not available. |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | ServiceActivity-Exchange.Read.All | Not available. |
HTTP request
GET /reports/serviceActivity/getConnectivityMetricsForExchange
Function parameters
In the request URL, provide the following query parameters with values.
Parameter | Type | Description |
---|---|---|
aggregationIntervalInMinutes | Int32 | Aggregation interval in minutes. The default value is 15 , which sets the data to be aggregated into 15-minute sets. Allowed values are 5 , 10 , 15 , and 30 . Optional. |
exclusiveIntervalEndDateTime | DateTimeOffset | The ending date and time in UTC. Required. |
inclusiveIntervalStartDateTime | DateTimeOffset | The starting date and time in UTC. The earliest start time allowed is 30 days in the past. Required. |
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 function returns a 200 OK
response code and a serviceActivityPerformanceMetric collection in the response body.
Examples
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/reports/serviceActivity/getConnectivityMetricsForExchange(inclusiveIntervalStartDateTime=2024-10-02T10:30:00Z,exclusiveIntervalEndDateTime=2024-10-02T10:59:59Z,aggregationIntervalInMinutes=10)
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.serviceActivityPerformanceMetric)",
"value": [
{
"intervalStartDateTime": "2024-10-02T10:30:00Z",
"percentage": 99.91178711289913
},
{
"intervalStartDateTime": "2024-10-02T10:40:00Z",
"percentage": 99.64939191410102
}
]
}