Skip to contents

Get information about a specific Mattermost user

Usage

get_user_info(user_id = NULL, auth = authenticate_mattermost())

Arguments

user_id

The Mattermost user ID.

auth

The authentication object created by `authenticate_mattermost()`.

Value

Parsed JSON response with user information.

Examples

if (FALSE) { # \dontrun{
users <- get_all_users()
userinfo <- lapply(users, get_user_info)
} # }