How to List All Users in an Organization

Updated on 08 April, 2026

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.


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.

This guide explains how to list all users in an organization using the Vultr Console and the Vultr API.

  • Vultr Console
  • Vultr API
  1. Log in to the Vultr Console.

  2. Click the organization name in the top navigation bar.

  3. Click Manage Organization.

  4. Click the Users tab.

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

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.

Comments