ESC
Type to search...

PrintConnector.Read.All

Export JSON
Export CSV
Copy URL
Print
Delegated Read All Resources

Allows the application to read 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 print connectors

Allows the application to read 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}
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}
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
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

Code Examples

C# / .NET SDK
Get 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
var result = await graphClient.Print.Connectors["{printConnector-id}"].GetAsync();
JavaScript
Get printConnector
const options = {
	authProvider,
};

const client = Client.init(options);

let printConnector = await client.api('/print/connectors/{printConnectorId}')
	.get();
PowerShell
Get printConnector
Import-Module Microsoft.Graph.Devices.CloudPrint

Get-MgPrintConnector -PrintConnectorId $printConnectorId
Python
Get 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

result = await graph_client.print.connectors.by_print_connector_id('printConnector-id').get()

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.Read.All

4

Grant Admin Consent

This delegated permission requires admin consent.