Skip to content

Instantly share code, notes, and snippets.

@maisarissi
Last active February 8, 2023 20:25
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/4854ae1b7fffae63659e3c29bebfea03 to your computer and use it in GitHub Desktop.
Save maisarissi/4854ae1b7fffae63659e3c29bebfea03 to your computer and use it in GitHub Desktop.
msgraph-dotnet-v4-create-user
//create user using v4
var user = new User()
{
    DisplayName = "Adele V",
};
await graphServiceClient
.Users
.Request()
.AddAsync(user);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment