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.
Permission type
Least privileged permissions
Higher privileged permissions
Delegated (work or school account)
Reports.Read.All
Not available.
Delegated (personal Microsoft account)
Not supported.
Not supported.
Application
Not supported.
Not supported.
HTTP request
GET /reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime='{startDateTime}',endDateTime='{endDateTime}')
Function parameters
In the request URL, provide the following function parameters with values:
Parameter
Type
Required?
Description
groupId
Edm.String
Yes
The ID of the group 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.
GET https://graph.microsoft.com/v1.0/reports/getGroupArchivedPrintJobs(groupId='{id}',startDateTime=<timestamp>,endDateTime=<timestamp>)
// 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.Reports.GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTime(DateTimeOffset.Parse("{endDateTime}"),"{groupId}",DateTimeOffset.Parse("{startDateTime}")).GetAsGetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeGetResponseAsync();
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
//other-imports
)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
groupId := "{groupId}"
startDateTime , err := time.Parse(time.RFC3339, "{startDateTime}")
endDateTime , err := time.Parse(time.RFC3339, "{endDateTime}")
getGroupArchivedPrintJobs, err := graphClient.Reports().GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTime(&groupId, &startDateTime, &endDateTime).GetAsGetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeGetResponse(context.Background(), nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
var result = graphClient.reports().getGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTime(OffsetDateTime.parse("{endDateTime}"), "{groupId}", OffsetDateTime.parse("{startDateTime}")).get();
<?php
use Microsoft\Graph\GraphServiceClient;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$result = $graphServiceClient->reports()->getGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTime(new \DateTime('{endDateTime}'),'{groupId}', new \DateTime('{startDateTime}'))->get()->wait();
# 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.reports.get_group_archived_print_jobs_with_group_id_with_start_date_time_with_end_date_time("{endDateTime}","{groupId}","{startDateTime}").get()