reportRoot: getM365AppUserDetail
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 a report that provides the details about which apps and platforms users have used.
Note: For details about different report views and names, see Microsoft 365 Reports in the admin center - Microsoft 365 Apps usage.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | Reports.Read.All |
Delegated (personal Microsoft account) | Not supported. |
Application | Reports.Read.All |
Note: For delegated permissions to allow apps to read service usage reports on behalf of a user, the tenant administrator must have assigned the user the appropriate Azure Active Directory limited administrator role. For more details, see Authorization for APIs to read Microsoft 365 usage reports.
HTTP request
GET /reports/getM365AppUserDetail(period='{period_value}')
GET /reports/getM365AppUserDetail(date='{date_value}')
Function parameters
In the request URL, provide the following parameters with a valid value.
Parameter | Type | Description |
---|---|---|
period | string | Specifies the length of time over which the report is aggregated. The supported values for {period_value} are: D7 , D30 , D90 , and D180 . These values follow the format Dn where n represents the number of days over which the report is aggregated. |
date | Date | Specifies the date for which you would like to view the users who performed any activity. {date_value} must have a format of YYYY-MM-DD. As this report is only available for the past 30 days, {date_value} should be a date from that range. |
Note: You need to set either period or date in the request URL.
Optional query parameters
This method supports the $format
, $top
, and $skipToken
OData query parameters to customize the response. The default output type is text/csv
. 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. |
Request body
Do not supply a request body with 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 do not require an Authorization
header.
The CSV file has the following headers for columns:
- Report Refresh Date
- User Principal Name
- Last Activation Date
- Last Activity Date
- Report Period
- Windows
- Mac
- Mobile
- Web
- Outlook
- Word
- Excel
- PowerPoint
- OneNote
- Teams
- Outlook (Windows)
- Word (Windows)
- Excel (Windows)
- PowerPoint (Windows)
- OneNote (Windows)
- Teams (Windows)
- Outlook (Mac)
- Word (Mac)
- Excel (Mac)
- PowerPoint (Mac)
- OneNote (Mac)
- Teams (Mac)
- Outlook (Mobile)
- Word (Mobile)
- Excel (Mobile)
- PowerPoint (Mobile)
- OneNote (Mobile)
- Teams (Mobile)
- Outlook (Web)
- Word (Web)
- Excel (Web)
- PowerPoint (Web)
- OneNote (Web)
- Teams (Web)
JSON
If successful, this method returns a 200 OK
response code and a JSON object in response body.
The default page size for this request is 200 items.
Examples
Example 1: CSV output
The following is an example that outputs CSV.
Request
The following is an example of the request.
GET https://graph.microsoft.com/beta/reports/getM365AppUserDetail(period='D7')?$format=text/csv
Response
The following is an example of the response.
HTTP/1.1 302 Found
Content-Type: text/plain
Location: https://reports.office.com/data/download/JDFKdf2_eJXKS034dbc7e0t__XDe
Follow the 302 redirection and the CSV file that downloads will have the following schema.
HTTP/1.1 200 OK
Content-Type: application/octet-stream
Report Refresh Date,User Principal Name,Last Activation Date,Last Activity Date,Report Period,Windows,Mac,Mobile,Web,Outlook,Word,Excel,PowerPoint,OneNote,Teams,Outlook (Windows),Word (Windows),Excel (Windows),PowerPoint (Windows),OneNote (Windows),Teams (Windows),Outlook (Mac),Word (Mac),Excel (Mac),PowerPoint (Mac),OneNote (Mac),Teams (Mac),Outlook (Mobile),Word (Mobile),Excel (Mobile),PowerPoint (Mobile),OneNote (Mobile),Teams (Mobile),Outlook (Web),Word (Web),Excel (Web),PowerPoint (Web),OneNote (Web),Teams (Web)
Example 2: JSON output
The following is an example that returns JSON.
Request
The following is an example of the request.
GET https://graph.microsoft.com/beta/reports/getM365AppUserDetail(period='D7')?$format=application/json
Response
The following is an example of the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 951
{
"@odata.nextLink": "https://graph.microsoft.com/beta/reports/getM365AppUserDetail(period='D7')?$format=application/json&$skiptoken=AAAAA",
"value": [
{
"reportRefreshDate": "2020-06-30",
"userPrincipalName": "admin@contoso.com",
"lastActivationDate": "2020-05-22",
"lastActivityDate": "2020-06-30",
"details": [
{
"reportPeriod": 7,
"windows": true,
"mac": false,
"mobile": true,
"web": false,
"outlook": false,
"word": false,
"excel": false,
"powerPoint": false,
"oneNote": false,
"teams": true,
"outlookWindows": false,
"wordWindows": false,
"excelWindows": false,
"powerPointWindows": false,
"oneNoteWindows": false,
"teamsWindows": true,
"outlookMac": false,
"wordMac": false,
"excelMac": false,
"powerPointMac": false,
"oneNoteMac": false,
"teamsMac": false,
"outlookMobile": false,
"wordMobile": false,
"excelMobile": false,
"powerPointMobile": false,
"oneNoteMobile": false,
"teamsMobile": true,
"outlookWeb": false,
"wordWeb": false,
"excelWeb": false,
"powerPointWeb": false,
"oneNoteWeb": false,
"teamsWeb": true
}
]
}
]
}
Feedback
Submit and view feedback for