Skip to content

Latest commit

 

History

History
59 lines (50 loc) · 2.36 KB

managedtenants-tenantusage.md

File metadata and controls

59 lines (50 loc) · 2.36 KB
title description author ms.localizationpriority ms.subservice doc_type
tenantUsage resource type
Represents the number of monthly active users per service in a managed tenant for the previous month. The time period for the data is a sliding window that takes a snapshot once a day.
kylewirpel
medium
m365-lighthouse
resourcePageType

tenantUsage resource type

Namespace: microsoft.graph.managedTenants

[!INCLUDE beta-disclaimer]

Represents the number of monthly active users per service in a managed tenant for the previous month. The time period for the data is a sliding window that takes a snapshot once a day.

Methods

Method Return type Description
List microsoft.graph.managedTenants.tenantUsage collection Gets the monthly usage data for each service in a managed tenant.

Properties

Property Type Description
id String The unique identifier for the tenant. Required. Read-only.
reportDateTime DateTimeOffset The day the report was generated for the previous month. Required. Read-only.
serviceUsages microsoft.graph.managedTenants.serviceUsage collection The number of monthly active users for each service in the tenant. Example services: Excel, Exchange, Intune, Outlook, Teams, Word. Required. Read-only.
tenantId String The Microsoft Entra tenant identifier for the managed tenant. Read-only.
totalActiveUsers Int32 The total number of unique, active users. Required. Read-only.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.managedTenants.tenantUsage",
  "id": "String (identifier)",
  "serviceUsages": [
    {
      "@odata.type": "microsoft.graph.managedTenants.serviceUsage"
    }
  ],
  "tenantId": "String",
  "reportDateTime": "String (timestamp)",
  "totalActiveUsers": "Integer"
}