# Delete user

Remove a member from the organization.

Source: https://statusdashboard.com/docs/api/account-management/users/delete

`DELETE /app/users/{email}`

Removes a member from the organization and deletes their platform account.

Callers cannot delete their own account. The last member or last admin of an organization cannot be deleted.

The `email` path parameter must be URL-encoded (`@` → `%40`).

***

## Path parameters
| Parameter | Type   | Description                                        |
| --------- | ------ | -------------------------------------------------- |
| `email`   | string | URL-encoded email address of the member to delete. |

***

## Request
See [API Basics](/docs/api) for required headers.

***

## Sample request
```bash
curl -X DELETE https://api.statusdashboard.com/app/users/carol%40acmeplumbing.com \
  -H "Authorization: Bearer bcf847abf5c6:def456"
```

## Sample response
**Status: `204 No Content`**

No response body.

***

## Error responses
| Status | When                                                                 |
| ------ | -------------------------------------------------------------------- |
| `409`  | Cannot delete self, last member, or last admin of the organization.  |
| `403`  | Insufficient permissions.                                            |
| `404`  | No member with that email exists in the organization.                |
| `502`  | Member was removed from the organization but account cleanup failed. |
