PrintConnector.ReadWrite.All
Allows the application to read and write print connectors on behalf of the signed-in user.
In short
PrintConnector.ReadWrite.All is a delegated permission in the Microsoft Graph API, grouped under the PrintConnector category. Allows the application to read and write print connectors 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 print connectors
Allows the application to read and write print connectors on behalf of the signed-in user.
79ef9967-7d59-4213-9c64-4b10687637d8
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
appVersion |
String |
The connector's version. |
displayName |
String |
The name of the connector. |
fullyQualifiedDomainName |
String |
The connector machine's hostname. |
id |
String |
Read-only. |
location |
printerLocation |
The physical and/or organizational location of the connector. |
operatingSystem |
String |
The connector machine's operating system version. |
registeredBy |
userIdentity |
The user who registered the connector. |
registeredDateTime |
DateTimeOffset |
The DateTimeOffset when the connector was registered. |
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"@odata.type": "#microsoft.graph.printConnector",
"id": "String (identifier)",
"displayName": "String",
"fullyQualifiedDomainName": "String",
"operatingSystem": "String",
"appVersion": "String",
"location": {
"@odata.type": "microsoft.graph.printerLocation"
},
"registeredDateTime": "String (timestamp)"
}
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.
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
await graphClient.Print.Connectors["{printConnector-id}"].DeleteAsync();
const options = {
authProvider,
};
const client = Client.init(options);
await client.api('/print/connectors/9953d245-3f6e-418c-a438-67f50e69a430')
.delete();
Import-Module Microsoft.Graph.Devices.CloudPrint
Remove-MgPrintConnector -PrintConnectorId $printConnectorId
# 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
await graph_client.print.connectors.by_print_connector_id('printConnector-id').delete()
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 PrintConnector.ReadWrite.All
Grant Admin Consent
This delegated permission requires admin consent.
Frequently asked questions
What is the PrintConnector.ReadWrite.All Microsoft Graph permission?
PrintConnector.ReadWrite.All is a delegated permission in the Microsoft Graph API, grouped under the PrintConnector category. Allows the application to read and write print connectors 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 printconnector resource type. 18 documented Microsoft Graph REST methods require it. 16 Microsoft Graph PowerShell commands are documented for it.
Is PrintConnector.ReadWrite.All an application or a delegated permission?
PrintConnector.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 PrintConnector.ReadWrite.All require admin consent?
This delegated permission requires admin consent.
What is the permission ID (GUID) for PrintConnector.ReadWrite.All?
For PrintConnector.ReadWrite.All, the delegated (OAuth2 scope) ID is 79ef9967-7d59-4213-9c64-4b10687637d8. These are the real Microsoft Graph identifiers and can be used directly in an app registration manifest.