---
title: "Remove a member"
description: "The person loses the workspace within a minute (their dashboard session on the next request, an OAuth token when its short cache lapses). Their mentions, notes and outreach stay. Needs a signed-in owner or admin; only an owner removes another owner, and the last owner cannot be removed (409 last_owner)."
canonical: https://docs.mentio.dev/api/members/remove-member
markdown: https://docs.mentio.dev/api/members/remove-member.mdx
---

# Remove a member

`DELETE /v1/members/{id}`

The person loses the workspace within a minute (their dashboard session on the next request, an OAuth token when its short cache lapses). Their mentions, notes and outreach stay. Needs a signed-in owner or admin; only an owner removes another owner, and the last owner cannot be removed (409 last_owner).

## Parameters

- `id` (path, required): Membership id (mem_...).

## Responses

- 204: Removed
- 401: Missing or invalid API key
- 403: The credential is an API key, its person is not an owner or admin, or an admin tried to remove an owner
- 404: Member not found
- 409: The last owner cannot be removed (last_owner)

Full schemas: https://api.mentio.dev/v1/openapi.json. Conventions: https://docs.mentio.dev/conventions.mdx
