Update a bot account
update_bot.RdPartially update a bot's username, display name, or description. Only the provided fields are updated; omitted fields remain unchanged.
Usage
update_bot(
bot_user_id,
username,
display_name = NULL,
description = NULL,
verbose = FALSE,
auth = get_default_auth()
)Arguments
- bot_user_id
Character. The bot's user ID.
- username
Character. Required. The new username for the bot.
- display_name
Character. Optional new display name.
- description
Character. Optional new description.
- verbose
Logical. Print detailed request information? Default `FALSE`.
- auth
A `mattermost_auth` object created by [authenticate_mattermost()]. Defaults to [get_default_auth()].