Skip to content

Instantly share code, notes, and snippets.

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