How to Delete Vultr Account Users

Updated on April 22, 2025

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 Customer Portal, API, or CLI.

  • Vultr Customer Portal
  • Vultr API
  • Vultr CLI
  1. Navigate to Account and select Users under OTHER.

  2. Identify the user from the list.

  3. Click the Delete User icon to remove the user.

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

  1. Send a GET request to the Get Users endpoint 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}"
    
  2. Send a DELETE request to the Delete User endpoint 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}"
    
  1. List all users and note the target user ID.

    console
    $ vultr-cli users list
    
  2. 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.

Comments

No comments yet.