GET https://graph.microsoft.com/v1.0/external/connections/contosohr/groups/31bea3d537902000
var graphClient = new GraphServiceClient(requestAdapter);
var result = await graphClient.External.Connections["{externalConnection-id}"].Groups["{externalGroup-id}"].GetAsync();
//THE GO SDK IS IN PREVIEW. NON-PRODUCTION USE ONLY
graphClient := msgraphsdk.NewGraphServiceClientWithCredentials(cred, scopes)
result, err := graphClient.External().ConnectionsById("externalConnection-id").GroupsById("externalGroup-id").Get(context.Background(), nil)
<?php
// THIS SNIPPET IS A PREVIEW FOR THE KIOTA BASED SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($requestAdapter);
$requestResult = $graphServiceClient->external()->connectionsById('externalConnection-id')->groupsById('externalGroup-id')->get();