Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
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.
Note
Going forward, use the Microsoft 365 Copilot usage APIs under the /copilot URL path segment. For more information, see Copilot report root and Get Copilot user count summary.
Get the aggregated number of active and enabled users of Microsoft 365 Copilot for a specified time period.
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) | Reports.Read.All | Not available. |
| Delegated (personal Microsoft account) | Not supported. | Not supported. |
| Application | Reports.Read.All | Not available. |
Important
For delegated permissions to allow apps to read service usage reports on behalf of a user, the tenant administrator must have assigned the user one of the following Microsoft Entra ID limited administrator roles:
- Company Administrator
- Exchange Administrator
- SharePoint Administrator
- Lync Administrator
- Teams Service Administrator
- Teams Communications Administrator
- Global Reader
- Usage Summary Reports Reader
- Reports Reader
For more information, see Authorization for APIs to read Microsoft 365 usage reports.
HTTP request
GET /reports/getMicrosoft365CopilotUserCountSummary(period='{period_value}')
Function parameters
In the request URL, provide the following query parameters with values.
| Parameter | Type | Description |
|---|---|---|
| period | String | The number of previous days over which to report aggregated usage. The supported values are: D7, D30, D90, D180, ALL. The first four values follow the format Dn where n represents the number of days over which to aggregate data. ALL indicates to report usage for 7, 30, 90, and 180 days. |
Optional query parameters
This method supports the $format OData query parameter to customize the response. The default output type is application/json. However, if you want to specify the output type, you can use the OData $format query parameter to set the default output to text/csv or application/json.
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
CSV
If successful, this method returns a 302 Found response that redirects to a preauthenticated download URL for the report. That URL can be found in the Location header in the response.
Preauthenticated download URLs are only valid for a short period of time (a few minutes) and don't require an Authorization header.
The CSV file has the following headers for columns.
- Report Refresh Date
- Report Period
- Any App Enabled Users
- Any App Active Users
- Microsoft Teams Enabled Users
- Microsoft Teams Active Users
- Word Enabled Users
- Word Active Users
- PowerPoint Enabled Users
- PowerPoint Active Users
- Outlook Enabled Users
- Outlook Active Users
- Excel Enabled Users
- Excel Active Users
- OneNote Enabled Users
- OneNote Active Users
- Loop Enabled Users
- Loop Active Users
- Copilot Chat Enabled Users
- Copilot Chat Active Users
JSON
If successful, this method returns a 200 OK response code and a JSON object in the response body.
Examples
Example 1: CSV output
The following example outputs a URL for a CSV file.
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/reports/getMicrosoft365CopilotUserCountSummary(period='D7')?$format=text/csv
Response
The following example shows the response.
HTTP/1.1 302 Found
Content-Type: text/plain
Location: https://reports.office.com/data/download/JDFKdf2_eJXKS034dbc7e0t__XDe
The CSV file in the Location header of the 302 response has the following schema.
HTTP/1.1 200 OK
Content-Type: application/octet-stream
Report Refresh Date,Report Period,Any App Enabled Users,Any App Active Users,Microsoft Teams Enabled Users,Microsoft Teams Active Users ,Word Enabled Users,Word Active Users,PowerPoint Enabled Users,PowerPoint Active Users,Outlook Enabled Users,Outlook Active Users,Excel Enabled Users,Excel Active Users,OneNote Enabled Users,OneNote Active Users,Loop Enabled Users,Loop Active Users,Copilot Chat Enabled Users,Copilot Chat Active Users
Example 2: JSON output
The following example returns JSON data.
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/reports/getMicrosoft365CopilotUserCountSummary(period='D7')?$format=application/json
Response
The following example shows the response.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 537
{
"value": [
{
"reportRefreshDate": "2024-08-20",
"adoptionByProduct": [
{
"reportPeriod": 7,
"anyAppEnabledUsers": 359229,
"anyAppActiveUsers": 165115,
"microsoftTeamsEnabledUsers": 359096,
"microsoftTeamsActiveUsers": 123341,
"wordEnabledUsers": 359096,
"wordActiveUsers": 21459,
"powerPointEnabledUsers": 359096,
"powerPointActiveUsers": 8530,
"outlookEnabledUsers": 359096,
"outlookActiveUsers": 37270,
"excelEnabledUsers": 359096,
"excelActiveUsers": 6709,
"oneNoteEnabledUsers": 359096,
"oneNoteActiveUsers": 1660,
"loopEnabledUsers": 359096,
"loopActiveUsers": 1345,
"copilotChatEnabledUsers": 359096,
"copilotChatActiveUsers": 65480
}
]
}
]
}