Last active
December 7, 2023 21:00
-
-
Save maisarissi/a889abb6ec6ddba8c618c0d28c2e5941 to your computer and use it in GitHub Desktop.
microsoftgraph-java-v5-old-create-user
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
User user = new User(); | |
user.displayName = "displayName"; | |
user.userPrincipalName = "[email protected]"; | |
graphClient | |
.users() | |
.buildRequest() | |
.post(user); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment