---
title: How to Remove a User from an Organization
url: https://docs.vultr.com/platform/iam/organizations/how-to-remove-a-user-from-an-organization
description: Remove a user from your Vultr organization using the IAM API. Disassociate the user without deleting their platform account or affecting other memberships.
publish_date: 2026-03-24T19:51:59.697765Z
last_updated: 2026-04-28T15:29:28.168634Z
---

Removing a user from an organization revokes their access to all resources, roles, and policies associated with that organization. The user's account is not deleted from the Vultr platform. They retain access to any other organizations they belong to.

> [!NOTE]
> Removing a user from an organization does not delete their Vultr account. It only removes the association between the user and the organization. The user can be re-invited to the organization at any time.

This guide explains how to remove a user from an organization using the Vultr Console or the Vultr API.

=== "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.
    1. Locate the user you want to remove and click the **Remove** icon next to their name.
    1. In the confirmation dialog, click **Remove** to confirm.

        The user is removed from the organization and loses access to all associated resources.

=== "Vultr API"

    1. Send a `GET` request to the [**List Organizations** endpoint](https://www.vultr.com/api/#tag/organizations/operation/list-organizations) to retrieve all organizations associated with your account.

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

        Note the `id` of the organization from which you want to remove the user.

    1. Identify the `user_id` of the user you want to remove. Follow the steps in [How to List All Users in an Organization](https://docs.vultr.com/platform/iam/organizations/how-to-list-all-users-in-an-organization) to retrieve user IDs.

    1. Send a `DELETE` request to the [**Remove User from Organization** endpoint](https://www.vultr.com/api/#tag/organizations/operation/remove-organization-user) to remove the user. Replace `{organization-id}` with the organization id and `{user-id}` with the id of the user you want to remove.

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

        A successful removal returns an HTTP `204 No Content` response with no response body.