| title | List recentPrinterShares |
|---|---|
| description | Get a list of printer shares recently used by the signed-in user. |
| author | mayankbansal018 |
| ms.localizationpriority | medium |
| ms.subservice | universal-print |
| doc_type | apiPageType |
| ms.date | 04/05/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Get a list of printerShares recently used by the signed-in user.
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
[!INCLUDE permissions-table]
GET /me/print/recentPrinterSharesThis method supports some of the OData query parameters to help customize the response. For general information, see OData query parameters.
The following operators are not supported: $count, $orderby, and $search.
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a collection of printerShare objects in the response body.
The following example shows a request.
GET https://graph.microsoft.com/beta/me/print/recentPrinterShares
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#users('74157b7f-9fa7-41b6-9ee9-97c382ba1189')/print/recentPrinterShares",
"value": [
{
"id": "04ccb929-9e71-4aef-9f83-36e4a7fd53e3",
"name": "4c1cf503-efde-48fb-9db7-12c159da0ab3_FTPrinter",
"displayName": "4c1cf503-efde-48fb-9db7-12c159da0ab3_FTPrinter",
"viewPoint": {
"lastUsedDateTime": "2021-10-24T05:11:07Z"
}
}
]
}