#!/usr/bin/env python3importzulip# Pass the path to your zuliprc file here.client=zulip.Client(config_file="~/zuliprc")request={"group_id":user_group_id,"name":"marketing","description":"The marketing team.",}result=client.update_user_group(request)print(result)
Changes: Before Zulip 7.0 (feature level 165), this was
a required field.
descriptionstringoptional
Example: "The marketing team."
The new description of the group.
Changes: Before Zulip 7.0 (feature level 165), this was
a required field.
can_mention_groupintegeroptional
Example: 12
ID of the new user group whose members are allowed to mention the
group.
This setting cannot be set to "role:internet" and "role:owners"
system groups.
Changes: Before Zulip 8.0 (feature level 198),
the can_mention_group setting was named can_mention_group_id.
New in Zulip 8.0 (feature level 191). Previously, groups
could be mentioned if and only if they were not system groups.
Response
Example response(s)
Changes: As of Zulip 7.0 (feature level 167), if any
parameters sent in the request are not supported by this
endpoint, a successful JSON response will include an
ignored_parameters_unsupported array.
A typical successful JSON response may look like:
{"msg":"","result":"success"}
An example JSON response when the user group ID is invalid:
{"code":"BAD_REQUEST","msg":"Invalid user group","result":"error"}