Skip to content

Latest commit

 

History

History
97 lines (73 loc) · 2.99 KB

File metadata and controls

97 lines (73 loc) · 2.99 KB
title Get mailboxItem
description Read the properties and relationships of a mailboxItem object.
author cparker-msft
ms.date 02/23/2026
ms.localizationpriority medium
ms.subservice outlook
doc_type apiPageType

Get mailboxItem

Namespace: microsoft.graph

Read the properties and relationships of a mailboxItem object.

[!INCLUDE national-cloud-support]

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 /admin/exchange/mailboxes/{mailboxId}/folders/{mailboxFolderId}/items/{mailboxItemId}

Optional query parameters

This method supports the $select and $expand OData query parameters to help customize the response. For general information, see OData query parameters.

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 mailboxItem object in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/v1.0/admin/exchange/mailboxes/MBX:e0648f21@aab09c93/folders/AAMkAGVmMDEzM/items/AAMkAGI1AAAoZCfHAAA=

Response

The following example shows the response.

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

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

{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#admin/exchange/mailboxes/MBX:e0643f21@a7809c93/folders('Inbox')/items$entity",
    "@odata.type": "#microsoft.graph.mailboxItem",
    "@odata.etag": "W/\"CQAAABYAAACQ2fKdhq8oSKEDSVrdi3lRAAE8zPIo\"",
    "id": "EDSVrdi3lRAAE9J-20AAA=",
    "createdDateTime": "2021-09-15T12:16:38Z",
    "lastModifiedDateTime": "2021-09-15T12:16:41Z",
    "changeKey": "CQAAABYAAACQ2fKdhq8oSKEDSVrdi3lRAAE8zPIo",
    "categories": [],
    "type": "IPM.Note",
    "size": 71133
}