Skip to content

Instantly share code, notes, and snippets.

@maisarissi
Last active December 7, 2023 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maisarissi/556e199cd4860f9f981b80a7683fe0f3 to your computer and use it in GitHub Desktop.
Save maisarissi/556e199cd4860f9f981b80a7683fe0f3 to your computer and use it in GitHub Desktop.
microsoftgraph-java-v6-request-configuration
UserCollectionResponse response = graphClient
.groups()
.byGroupId("Id")
.members()
.graphUser()
.get( requestConfiguration -> {
requestConfiguration.headers.add("ConsistencyLevel", "Eventual");
requestConfiguration.queryParameters.top = 10;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment