GET https://graph.microsoft.com/v1.0/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/48fe5560-de56-2750-ae7c-2bbf1da9e452
// 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.IdentityGovernance.PrivilegedAccess.Group.AssignmentScheduleInstances["{privilegedAccessGroupAssignmentScheduleInstance-id}"].GetAsync();
mgc identity-governance privileged-access group assignment-schedule-instances get --privileged-access-group-assignment-schedule-instance-id {privilegedAccessGroupAssignmentScheduleInstance-id}
// 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
assignmentScheduleInstances, err := graphClient.IdentityGovernance().PrivilegedAccess().Group().AssignmentScheduleInstances().ByPrivilegedAccessGroupAssignmentScheduleInstanceId("privilegedAccessGroupAssignmentScheduleInstance-id").Get(context.Background(), nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
PrivilegedAccessGroupAssignmentScheduleInstance result = graphClient.identityGovernance().privilegedAccess().group().assignmentScheduleInstances().byPrivilegedAccessGroupAssignmentScheduleInstanceId("{privilegedAccessGroupAssignmentScheduleInstance-id}").get();
# 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.identity_governance.privileged_access.group.assignment_schedule_instances.by_privileged_access_group_assignment_schedule_instance_id('privilegedAccessGroupAssignmentScheduleInstance-id').get()