PrintSettings.Read.All
Allows the application to read tenant-wide print settings without a signed-in user.
Permission Details
Read tenant-wide print settings
Allows the application to read tenant-wide print settings without a signed-in user.
b5991872-94cf-4652-9765-29535087c6d8
Read tenant-wide print settings
Allows the application to read tenant-wide print settings on behalf of the signed-in user.
490f32fd-d90f-4dd7-a601-ff6cdc1a3f6c
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
documentConversionEnabled |
Boolean |
Specifies whether document conversion is enabled for the tenant. If document conversion is enabled, Universal Print service converts documents into a format compatible with the printer (xps to pdf) when needed. |
printerDiscoverySettings |
printerDiscoverySettings |
Specifies settings that affect printer discovery when using Universal Print. |
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"documentConversionEnabled": "Boolean",
"printerDiscoverySettings": {
"@odata.type": "microsoft.graph.printerDiscoverySettings"
}
}
Relationships
Relationships metadata is not available for this permission mapping.
View resource documentationGraph Methods
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
| Methods |
|---|
GET
/print/services
|
GET
/print/services/{id}
|
GET
/print/services/{id}/endpoints
|
GET
/print/services/{id}/endpoints/{name}
|
GET
/print/settings
|
Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Code Examples
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Print.Services["{printService-id}"].GetAsync();
const options = {
authProvider,
};
const client = Client.init(options);
let printSettings = await client.api('/print/settings')
.get();
Import-Module Microsoft.Graph.Devices.CloudPrint
Get-MgPrintService -PrintServiceId $printServiceId
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
result = await graph_client.print.services.by_print_service_id('printService-id').get()
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 or delegated permissions and search for PrintSettings.Read.All
Grant Admin Consent
Application permissions always require admin consent.