MailTips.ReadBasic.All
Allows the app to read mail tips for all users in the organization without a signed-in user. Mail tips include automatic replies, mailbox status, custom tips, and delivery information.
Permission Details
Read mail tips for all users
Allows the app to read mail tips for all users in the organization without a signed-in user. Mail tips include automatic replies, mailbox status, custom tips, and delivery information.
a2c9652d-4d7f-4e4e-9d75-ac32fdc6f413
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
automaticReplies |
automaticRepliesMailTips |
Mail tips for automatic reply if it has been set up by the recipient. |
customMailTip |
String |
A custom mail tip that can be set on the recipient's mailbox. |
deliveryRestricted |
Boolean |
Whether the recipient's mailbox is restricted, for example, accepting messages from only a predefined list of senders, rejecting messages from a predefined list of senders, or accepting messages from only authenticated senders. |
emailAddress |
emailAddress |
The email address of the recipient to get mailtips for. |
error |
mailTipsError |
Errors that occur during the getMailTips action. |
externalMemberCount |
Int32 |
The number of external members if the recipient is a distribution list. |
isModerated |
Boolean |
Whether sending messages to the recipient requires approval. For example, if the recipient is a large distribution list and a moderator has been set up to approve messages sent to that distribution list, or if sending messages to a recipient requires approval of the recipient's manager. |
mailboxFull |
Boolean |
The mailbox full status of the recipient. |
maxMessageSize |
Int32 |
The maximum message size that has been configured for the recipient's organization or mailbox. |
recipientScope |
recipientScopeType |
The scope of the recipient. The possible values are: none, internal, external, externalPartner, externalNonParther. For example, an administrator can set another organization to be its "partner". The scope is useful if an administrator wants certain mailtips to be accessible to certain scopes. It's also useful to senders to inform them that their message may leave the organization, helping them make the correct decisions about wording, tone and content. |
recipientSuggestions |
recipient collection |
Recipients suggested based on previous contexts where they appear in the same message. |
totalMemberCount |
Int32 |
The number of members if the recipient is a distribution list. |
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"automaticReplies": {
"@odata.type": "microsoft.graph.automaticRepliesMailTips"
},
"customMailTip": "string",
"deliveryRestricted": "boolean",
"emailAddress": {
"@odata.type": "microsoft.graph.emailAddress"
},
"error": {
"@odata.type": "microsoft.graph.mailTipsError"
},
"externalMemberCount": 1024,
"isModerated": "boolean",
"mailboxFull": "boolean",
"maxMessageSize": 1024,
"recipientScope": "string",
"recipientSuggestions": [
{
"@odata.type": "microsoft.graph.recipient"
}
],
"totalMemberCount": 1024
}
Relationships
Relationships metadata is not available for this permission mapping.
View resource documentationGraph Methods
Microsoft Graph v1.0 endpoints are not available from refreshed Microsoft Learn or Microsoft Graph OpenAPI metadata for this permission.
No API methods available for this version.
Microsoft Graph beta endpoints are not available from refreshed Microsoft Learn or Microsoft Graph OpenAPI metadata for this permission.
No API methods available for this version.
Microsoft Graph PowerShell v1.0 commands are not available from refreshed Microsoft Learn PowerShell snippets for this permission.
No deterministic PowerShell command map is available for this permission.
Browse PowerShell docsMicrosoft Graph PowerShell beta commands are not available from refreshed Microsoft Learn PowerShell snippets for this permission.
No deterministic PowerShell command map is available for this permission.
Browse PowerShell docsCode Examples
using Azure.Identity;
using Microsoft.Graph;
var scopes = new[] { "MailTips.ReadBasic.All" };
var credential = new InteractiveBrowserCredential(
new InteractiveBrowserCredentialOptions
{
ClientId = "YOUR_CLIENT_ID",
TenantId = "YOUR_TENANT_ID",
RedirectUri = new Uri("http://localhost")
});
var graphClient = new GraphServiceClient(credential, scopes);
var response = await graphClient
.WithUrl("https://graph.microsoft.com/v1.0/mailtips")
.GetAsync();
import { Client } from "@microsoft/microsoft-graph-client";
import { InteractiveBrowserCredential } from "@azure/identity";
const credential = new InteractiveBrowserCredential({
clientId: "YOUR_CLIENT_ID",
tenantId: "YOUR_TENANT_ID",
redirectUri: "http://localhost"
});
const token = await credential.getToken(["MailTips.ReadBasic.All"]);
const client = Client.init({
authProvider: (done) => done(null, token.token)
});
const response = await client.api("/mailtips").get();
Connect-MgGraph -Scopes "MailTips.ReadBasic.All"
Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/mailtips"
from azure.identity import InteractiveBrowserCredential
import requests
credential = InteractiveBrowserCredential(
client_id="YOUR_CLIENT_ID",
tenant_id="YOUR_TENANT_ID"
)
token = credential.get_token("MailTips.ReadBasic.All")
response = requests.get(
"https://graph.microsoft.com/v1.0/mailtips",
headers={"Authorization": f"Bearer {token.token}"}
)
print(response.json())
App Registration
Navigate to Azure Portal
Go to App registrations in Microsoft Entra admin center
Add API Permission
Select your app → API permissions → Add a permission → Microsoft Graph
Select Permission Type
Choose Application permissions and search for MailTips.ReadBasic.All
Grant Admin Consent
Application permissions always require admin consent.