PrintConnector.Read.All
Allows the application to read print connectors on behalf of the signed-in user.
Permission Details
Read print connectors
Allows the application to read print connectors on behalf of the signed-in user.
d69c2d6d-4f72-4f99-a6b9-663e32f8cf68
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
var result = await graphClient.Print.Connectors["{printConnector-id}"].GetAsync();
const options = {
authProvider,
};
const client = Client.init(options);
let printConnector = await client.api('/print/connectors/{printConnectorId}')
.get();
Import-Module Microsoft.Graph.Devices.CloudPrint
Get-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
result = await graph_client.print.connectors.by_print_connector_id('printConnector-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 PrintConnector.Read.All
Grant Admin Consent
This delegated permission requires admin consent.