---
title: How to List Groups for a User
url: https://docs.vultr.com/platform/iam/user-assignments/how-to-list-groups-for-a-user
description: List all groups that a specific user belongs to in your Vultr organization. View group memberships and inherited permissions for any user through the IAM API.
publish_date: 2026-03-24T19:53:20.928823Z
last_updated: 2026-04-28T15:41:46.051836Z
---

Listing groups for a specific user shows all groups that the user belongs to. This is useful for administrators to audit a user's group memberships and understand the permissions they inherit through those groups.

This guide explains how to list groups for a user using the Vultr Console and the Vultr API.

=== "Vultr Console"

    1. Log in to the [Vultr Console](https://console.vultr.com).
    1. Click the organization name in the top navigation bar.
    1. Click **Manage Organization**.
    1. Click the **Users** tab.
    1. Click the name of the user you want to inspect.
    1. Expand the **Groups** section.

        The section displays all groups the user belongs to.

=== "Vultr API"

    1. Identify the `user_id` of the user. Follow the steps in [How to List All Users in an Organization](https://docs.vultr.com/platform/iam/organizations/how-to-list-all-users-in-an-organization) to retrieve user IDs.

    1. Send a `GET` request to the [**List User's Groups** endpoint](https://www.vultr.com/api/#tag/users/operation/list-iam-user-groups) to retrieve all groups for the user. Replace `{user-id}` with the id of the user.

        ```console
        $ curl "https://api.vultr.com/v2/users/{user-id}/groups" \
            -X GET \
            -H "Authorization: Bearer ${VULTR_API_KEY}"
        ```

        The response contains the requested resources.
