reportRoot: getMailboxUsageDetail
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 details about mailbox usage.
Note: For details about different report views and names, see Microsoft 365 reports - Mailbox usage.
This API is supported in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
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 AD limited administrator role. For more details, see Authorization for APIs to read Microsoft 365 usage reports.
HTTP request
GET /reports/getMailboxUsageDetail(period='{period_value}')
Function parameters
In the request URL, provide the following parameter 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. Required. |
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 set to text/csv or application/json.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. |
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
- Display Name
- Is Deleted
- Deleted Date
- Created Date
- Last Activity Date
- Item Count
- Storage Used (Byte)
- Issue Warning Quota (Byte)
- Prohibit Send Quota (Byte)
- Prohibit Send/Receive Quota (Byte)
- Deleted Item Count
- Deleted Item Size (Byte)
- Deleted Item Quota (Byte)
- Has Archive
- Report Period
JSON
If successful, this method returns a 200 OK
response code and a JSON object in the response body.
The default page size for this request is 200 items.
Example
CSV
The following is an example that outputs CSV.
Request
The following is an example of the request.
GET https://graph.microsoft.com/beta/reports/getMailboxUsageDetail(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,Display Name,Is Deleted,Deleted Date,Created Date,Last Activity Date,Item Count,Storage Used (Byte),Issue Warning Quota (Byte),Prohibit Send Quota (Byte),Prohibit Send/Receive Quota (Byte),Deleted Item Count,Deleted Item Size (Byte),Deleted Item Quota (Byte),Has Archive,Report Period
JSON
The following is an example that returns JSON.
Request
The following is an example of the request.
GET https://graph.microsoft.com/beta/reports/getMailboxUsageDetail(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: 526
{
"value": [
{
"reportRefreshDate": "2017-09-01",
"userPrincipalName": "userPrincipalName-value",
"displayName": "displayName-value",
"isDeleted": false,
"deletedDate": null,
"createdDate": "2016-03-30",
"lastActivityDate": "2017-09-01",
"itemCount": 138481,
"storageUsedInBytes": 10414748704,
"deletedItemCount": 138481,
"deletedItemSizeInBytes": 10414748704,
"deletedItemQuota": 107374182400,
"hasArchive": true,
"issueWarningQuotaInBytes": 10522698752,
"prohibitSendQuotaInBytes": 10630040576,
"prohibitSendReceiveQuotaInBytes": 10737418240,
"reportPeriod": "7"
}
]
}
Feedback
Submit and view feedback for