PrintSettings.ReadWrite.All
Allows the application to read and write tenant-wide print settings on behalf of the signed-in user.
In short
PrintSettings.ReadWrite.All is a delegated permission in the Microsoft Graph API, grouped under the PrintSettings category. Allows the application to read and write tenant-wide print settings on behalf of the signed-in user. It grants read and write access to resources. This delegated permission requires admin consent.
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.
Frequently asked questions
What is the PrintSettings.ReadWrite.All Microsoft Graph permission?
PrintSettings.ReadWrite.All is a delegated permission in the Microsoft Graph API, grouped under the PrintSettings category. Allows the application to read and write tenant-wide print settings on behalf of the signed-in user. It grants read and write access to resources. This delegated permission requires admin consent. It is mapped to the Microsoft Graph printsettings resource type. 12 documented Microsoft Graph REST methods require it. 8 Microsoft Graph PowerShell commands are documented for it.
Is PrintSettings.ReadWrite.All an application or a delegated permission?
PrintSettings.ReadWrite.All is a delegated permission only. It grants access on behalf of a signed-in user and cannot be used for app-only access.
Does PrintSettings.ReadWrite.All require admin consent?
This delegated permission requires admin consent.
What is the permission ID (GUID) for PrintSettings.ReadWrite.All?
For PrintSettings.ReadWrite.All, the delegated (OAuth2 scope) ID is 9ccc526a-c51c-4e5c-a1fd-74726ef50b8f. These are the real Microsoft Graph identifiers and can be used directly in an app registration manifest.