MicrosoftGraph.Users.User (Microsoft Graph API Client v0.1.0)
https://docs.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0
Link to this section Summary
Link to this section Functions
Link to this function
get_user(client, id, options \\ [])
https://docs.microsoft.com/en-us/graph/api/user-get?view=graph-rest-1.0&tabs=http
examples
Examples
iex> MicrosoftGraph.Users.User.get_user(client, "1234...")
{:ok, response}
Link to this function
list_users(client, options \\ [])
https://docs.microsoft.com/en-us/graph/api/user-list?view=graph-rest-1.0&tabs=http
examples
Examples
iex> MicrosoftGraph.Users.User.list_users(client)
{:ok, response}
# Filter results
iex> MicrosoftGraph.Users.User.list_users(client, params: %{"$filter" => "userType eq 'Member' and accountEnabled eq true"})
{:ok, response}