PrintSettings.ReadWrite.All
Allows the application to read and write tenant-wide print settings on behalf of the signed-in user.
Permission Details
Read and write tenant-wide print settings
Allows the application to read and write tenant-wide print settings on behalf of the signed-in user.
9ccc526a-c51c-4e5c-a1fd-74726ef50b8f
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
|
PATCH
/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);
const printSettings = {
documentConversionEnabled: true
};
await client.api('/print/settings')
.update(printSettings);
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 Delegated permissions and search for PrintSettings.ReadWrite.All
Grant Admin Consent
This delegated permission requires admin consent.