Skip to content

Instantly share code, notes, and snippets.

@maisarissi
Last active December 7, 2023 21:00
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/a889abb6ec6ddba8c618c0d28c2e5941 to your computer and use it in GitHub Desktop.
Save maisarissi/a889abb6ec6ddba8c618c0d28c2e5941 to your computer and use it in GitHub Desktop.
microsoftgraph-java-v5-old-create-user
User user = new User();
user.displayName = "displayName";
user.userPrincipalName = "email@contoso.onmicrosoft.com";
graphClient
.users()
.buildRequest()
.post(user);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment