POST https://graph.microsoft.com/beta/education/synchronizationProfiles/{id}/pause
var graphClient = new GraphServiceClient(requestAdapter);
await graphClient.Education.SynchronizationProfiles["{educationSynchronizationProfile-id}"].Pause.PostAsync();
//THE GO SDK IS IN PREVIEW. NON-PRODUCTION USE ONLY
graphClient := msgraphsdk.NewGraphServiceClientWithCredentials(cred, scopes)
graphClient.Education().SynchronizationProfilesById("educationSynchronizationProfile-id").Pause().Post(context.Background(), nil)
<?php
// THIS SNIPPET IS A PREVIEW FOR THE KIOTA BASED SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($requestAdapter);
$graphServiceClient->education()->synchronizationProfilesById('educationSynchronizationProfile-id')->pause()->post();