| title | serviceActivity: getAudioStreamQoEMetricsForTeams |
|---|---|
| description | Get metrics based on the percentage of audio streams for which quality of experience (QoE) telemetry was received by the Teams service. |
| author | mkuninty |
| ms.localizationpriority | medium |
| ms.subservice | m365-monitoring-service |
| doc_type | apiPageType |
| ms.date | 12/02/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Get metrics based on the percentage of audio streams for which quality of experience (QoE) telemetry was received by the Teams service.
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.
[!INCLUDE permissions-table]
GET /reports/serviceActivity/getAudioStreamQoEMetricsForTeamsIn 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. |
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this function returns a 200 OK response code and a serviceActivityPerformanceMetric collection in the response body.
The following example shows a request.
GET https://graph.microsoft.com/beta/reports/serviceActivity/getAudioStreamQoEMetricsForTeams(inclusiveIntervalStartDateTime=2024-10-02T10:30:00Z,exclusiveIntervalEndDateTime=2024-10-02T10:59:59Z,aggregationIntervalInMinutes=10)
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
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": 97.52
},
{
"intervalStartDateTime": "2024-10-02T10:40:00Z",
"percentage": 96.49
}
]
}