How to Delete Vultr Account Users
-
by Blog Admin
- 48
How to Delete Vultr Account Users
Learn how to remove users from your Vultr account to manage access permissions and team membership.
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
- Navigate to Account and select Users under OTHER.
- Identify the user from the list.
- Click the Delete User icon to remove the user.
- Click Delete User in the confirmation prompt to permanently delete the user.
Vultr API
- Send a
GETrequest 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}"
- Send a
DELETErequest 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}"
Vultr CLI
- List all users and note the target user ID.
console
$ vultr-cli users list - Delete the target user by specifying the user ID.
console
$ vultr-cli users delete <user-id>Run
vultr-cli users delete --helpto view additional available options.
How to Delete Vultr Account Users Learn how to remove users from your Vultr account to manage access permissions and team membership. 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.…
How to Delete Vultr Account Users Learn how to remove users from your Vultr account to manage access permissions and team membership. 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.…