Skip to content

Latest commit

 

History

History
131 lines (104 loc) · 5.01 KB

reports-getuserarchivedprintjobs.md

File metadata and controls

131 lines (104 loc) · 5.01 KB
title description author ms.localizationpriority ms.subservice doc_type
reports: getUserArchivedPrintJobs
Get a list of archived print jobs for a particular user.
nilakhan
medium
universal-print
apiPageType

reportRoot: getUserArchivedPrintJobs

Namespace: microsoft.graph

Get a list of archived print jobs for a particular user.

[!INCLUDE national-cloud-support]

Permissions

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]

HTTP request

GET /reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime='{startDateTime}',endDateTime='{endDateTime}')

Function Parameters

In the request URL, provide the following function parameters with values:

Parameter Type Required? Description
userId Edm.String Yes The ID of the user to return data for.
startDateTime Edm.DateTimeOffset No The start date (inclusive) for the time period to include data from.
endDateTime Edm.DateTimeOffset No The end date (inclusive) for the time period to include data from.

Note: If a value is not required, pass the parameter with null value.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this function returns a 200 OK response code and a archivedPrintJob collection in the response body.

Examples

Request

GET https://graph.microsoft.com/v1.0/reports/getUserArchivedPrintJobs(userId='{id}',startDateTime=<timestamp>,endDateTime=<timestamp>)

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-Type: application/json

{
  "value": [
    {
      "id": "016b5565-3bbf-4067-b9ff-4d68167eb1a6",
      "printerId": "016b5565-3bbf-4067-b9ff-4d68167eb1a6",
      "printerName": "printerName1",
      "processingState": "completed",
      "createdDateTime": "2023-06-29T00:00:00.0000000Z",
      "acquiredDateTime": "2023-06-29T00:00:01.0000000Z",
      "completionDateTime": "2023-06-29T00:00:02.0000000Z",
      "acquiredByPrinter": true,
      "copiesPrinted": 1,
      "createdBy": {
        "displayName": "username",
        "userPrincipalName": "username@contoso.com",
      }
    }
  ]
}