Skip to content

Instantly share code, notes, and snippets.

@maisarissi
Created 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/d285320d7f41a75f3bdc61a6f7056b63 to your computer and use it in GitHub Desktop.
Save maisarissi/d285320d7f41a75f3bdc61a6f7056b63 to your computer and use it in GitHub Desktop.
microsoftgraph-java-v6-new-create-user
User user = new User();
user.setDisplayName("displayName");
user.setMail("email@contoso.onmicrosoft.com");
graphClient
.users()
.post(user);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment