mirror of
https://github.com/zulip/zulip.git
synced 2026-07-18 21:04:19 +08:00
This apparently had some sort of rebase conflict issue with the migration to the nicer syntax for tabs.
880 B
880 B
Get user groups
Fetches all of the user groups in the organization.
GET {{ api_url }}/v1/user_groups
Usage examples
{start_tabs} {tab|python}
{generate_code_example(python)|/user_groups:get|example}
{tab|curl}
curl -X GET {{ api_url }}/v1/user_groups \
-u BOT_EMAIL_ADDRESS:BOT_API_KEY
{end_tabs}
Arguments
{generate_api_arguments_table|zulip.yaml|/user_groups:get}
Response
Return values
user_groups: A list of dictionaries, where each dictionary contains information about a user group.description: The human-readable description of the user group.id: The user group's integer id.members: The integer User IDs of the user group members.name: User group name.
Example response
A typical successful JSON response may look like:
{generate_code_example|/user_groups:get|fixture(200)}