---
title: How to List All Users in an Organization
url: https://docs.vultr.com/platform/iam/organizations/how-to-list-all-users-in-an-organization
description: List all users in your Vultr organization including regular and service users. Retrieve user details such as status, email, and API access through the IAM API.
publish_date: 2026-03-25T17:11:04.867764Z
last_updated: 2026-06-01T20:31:19.697549Z
---

Listing all users in an organization retrieves both regular users and service users, including their status, email, and API access details. This is useful for auditing user access, identifying service accounts, and retrieving user IDs for other IAM operations.

Follow this guide to list all users in an organization using the Vultr Console, the Vultr API, or the Vultr CLI.

=== "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.

        The page displays all users in the organization with their name, email, type, and status.

=== "Vultr API"

    Send a `GET` request to the **List Users** endpoint to retrieve all users in your organization.

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

    The response contains all users including regular users and service users.

=== "Vultr CLI"

    ```console
    $ vultr-cli user list
    ```

    The output displays each user's ID, name, email, API access status, and ACL assignments.
