---
title: Delete Users
url: https://docs.vultr.com/platform/other/users/manage-users/delete-users
description: Learn how to remove users from your Vultr account to manage access permissions and team membership.
publish_date: 2024-11-15T18:19:38.413197Z
last_updated: 2025-09-12T21:47:44.638958Z
---

# How to Delete Vultr Account Users

Deleting a user removes the user's sign-in information and permissions from your Vultr account. After removing an account, users can no longer log in or access any resources. This action is important if a user has left your organization.

Follow this guide to delete users using the Vultr Console, API, or CLI.

=== "Vultr Console"

    1. Navigate to **Account** and select **Users** under **OTHER**.
    1. Identify the user from the list.

    1. Click the **Delete User** icon to remove the user.

    1. Click **Delete User** in the confirmation prompt to permanently delete the user.

=== "Vultr API"

    1. Send a `GET` request to the [**Get Users** endpoint](https://www.vultr.com/api/#tag/users/operation/list-users) to view all users and note the target user ID.
    
        ```console
        $ curl "https://api.vultr.com/v2/users" \
            -X GET \
            -H "Authorization: Bearer ${VULTR_API_KEY}"
        ```    
   
    1. Send a `DELETE` request to the [**Delete User** endpoint](https://www.vultr.com/api/#tag/users/operation/delete-user) and specify the user ID to delete the target user.

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

=== "Vultr CLI"

    1. List all users and note the target user ID.

        ```console
        $ vultr-cli users list
        ```   
       
    1. Delete the target user by specifying the user ID.

        ```console
        $ vultr-cli users delete <user-id>
        ```
    
        Run `vultr-cli users delete --help` to view additional available options.