Skip to content

Latest commit

 

History

History
96 lines (77 loc) · 3.15 KB

managedtenants-managedtenant-list-tenantusage.md

File metadata and controls

96 lines (77 loc) · 3.15 KB
title description author ms.localizationpriority ms.subservice doc_type
List tenantUsage
Get a list of the tenantUsage objects and their properties.
kylewirpel
medium
m365-lighthouse
apiPageType

List tenantUsage

Namespace: microsoft.graph.managedTenants

[!INCLUDE beta-disclaimer]

Gets the monthly usage data for each service in a managed tenant.

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.

[!INCLUDE permissions-table]

HTTP request

GET /tenantRelationships/managedTenants/tenantUsage

Optional query parameters

This method supports the $filter and $top OData query parameters to help customize the response.

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 tenantUsage objects in the response body.

Examples

Request

GET https://graph.microsoft.com/beta/tenantRelationships/managedTenants/tenantUsage

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-Type: application/json

{
  "value": [
        {
            "tenantId": "fab47685-ce50-424c-5215-ae28419c9db6",
            "reportingDate": "2021-09-01T00:00:00Z",
            "monthlyActiveUsers": 100,
            "serviceUsages": [
                { "serviceName": "Excel", "monthlyActiveUsers": 100 },
                { "serviceName": "Exchange", "monthlyActiveUsers": 100 },
                { "serviceName": "Intune", "monthlyActiveUsers": 100 },
                { "serviceName": "Teams", "monthlyActiveUsers": 100 },
                { "serviceName": "Word", "monthlyActiveUsers": 100 }
            ]
        }
  ]
}