Get information about a specific Mattermost user
get_user_info.RdRetrieve detailed information about a user, such as their username, email, roles, and ID.
Usage
get_user_info(user_id = NULL, auth = authenticate_mattermost())Examples
if (FALSE) { # \dontrun{
# Get info about a specific user by ID
user <- get_user_info("xb123abc456...")
# Get info about the current authenticated bot/user
myself <- get_user_info("me")
print(myself$id)
} # }