# Delete account user

Remove a user's membership from the company's account.

{% hint style="danger" %}
**IMPORTANT**: When removing a user from the organization, they will lose access to all resources, such as documents and templates. However, the documents created by them will remain in the organization and continue to be accessible to other members.
{% endhint %}

{% hint style="info" %}
The request method is DELETE. If you use GET or POST it will not have the desired effect.
{% endhint %}

## Delete user

<mark style="color:red;">`DELETE`</mark> `https://api.zapsign.com.br/api/v1/users/{{user_email}}/`

{% hint style="success" %}
In the endpoint above, replace `{{user_email}}` with the email of the user you wish to remove from the organization.
{% endhint %}

#### Headers

<table><thead><tr><th width="179">Name</th><th width="116">Type</th><th>Description</th></tr></thead><tbody><tr><td>Authorization<mark style="color:red;">*</mark></td><td>string</td><td><p>apiToken ahead of the "Bearer" text. </p><p>Ex: Bearer c7f35c84-7893-4087-b4fb-d1f06c23</p></td></tr></tbody></table>

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "message": "User successfully removed from the company."
}
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
**Warning**: It is not possible to remove users with owner permission from the organization.
{% endhint %}
