ESC
Type to search...

PrintConnector.ReadWrite.All

Export JSON
Export CSV
Copy URL
Print
Delegated Read/Write All Resources

Allows the application to read and write print connectors on behalf of the signed-in user.

Permission data: April 6, 2026 at 4:06 AM UTC
Delegated Access App-Only Access

Permission Details

Delegated Permission Admin consent required

Read and write print connectors

Allows the application to read and write print connectors on behalf of the signed-in user.

Properties

Microsoft Graph v1.0 exact-category-docs

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

Microsoft Graph v1.0 exact-category-docs

JSON representation is shown from stable Microsoft Graph v1.0 metadata.

JSON representation
{
  "@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 documentation

Graph Methods

Delegated access App-only access
Exact Microsoft Learn match

Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /print/connectors
GET /print/connectors/{printConnectorId}
GET /print/printers/{printerId}/connectors
GET /print/services
GET /print/services/{printServiceId}
GET /print/services/{printServiceId}/endpoints
GET /print/services/{printServiceId}/endpoints/{printServiceEndpointId}
PATCH /print/connectors/{printConnectorId}
DELETE /print/connectors/{printConnectorId}
Exact Microsoft Learn match

Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /print/connectors
GET /print/connectors/{id}
GET /print/printers/{id}/connectors
GET /print/services
GET /print/services/{id}
GET /print/services/{id}/endpoints
GET /print/services/{id}/endpoints/{name}
PATCH /print/connectors/{id}
DELETE /print/connectors/{printConnectorId}
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgPrintConnector /print/connectors
List printConnectors
Get-MgPrintConnector /print/connectors/{printConnectorId}
Get printConnector
Get-MgPrintPrinterConnector /print/printers/{printerId}/connectors
List printConnectors for a printer
Get-MgPrintService /print/services
List printServices
Get-MgPrintService /print/services/{printServiceId}
Get printService
Get-MgPrintServiceEndpoint /print/services/{printServiceId}/endpoints
List endpoints
Get-MgPrintServiceEndpoint /print/services/{printServiceId}/endpoints/{printServiceEndpointId}
Get printServiceEndpoint
Remove-MgPrintConnector /print/connectors/{printConnectorId}
Delete printConnector
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgBetaPrintConnector /print/connectors
List printConnectors
Get-MgBetaPrintConnector /print/connectors/{id}
Get printConnector
Get-MgBetaPrintPrinterConnector /print/printers/{id}/connectors
List printConnectors for printer
Get-MgBetaPrintService /print/services
List printServices
Get-MgBetaPrintService /print/services/{id}
Get printService
Get-MgBetaPrintServiceEndpoint /print/services/{id}/endpoints
List printServiceEndpoints
Get-MgBetaPrintServiceEndpoint /print/services/{id}/endpoints/{name}
Get printServiceEndpoint
Remove-MgBetaPrintConnector /print/connectors/{printConnectorId}
Delete printConnector

Code Examples

C# / .NET SDK
Delete printConnector
// 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();
JavaScript
Delete printConnector
const options = {
	authProvider,
};

const client = Client.init(options);

await client.api('/print/connectors/9953d245-3f6e-418c-a438-67f50e69a430')
	.delete();
PowerShell
Delete printConnector
Import-Module Microsoft.Graph.Devices.CloudPrint

Remove-MgPrintConnector -PrintConnectorId $printConnectorId
Python
Delete printConnector
# 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

1

Navigate to Azure Portal

Go to App registrations in Microsoft Entra admin center

2

Add API Permission

Select your app → API permissions → Add a permission → Microsoft Graph

3

Select Permission Type

Choose Delegated permissions and search for PrintConnector.ReadWrite.All

4

Grant Admin Consent

This delegated permission requires admin consent.