# Member

`DELETE /workspaces/:workspace/projects/:project_name/members/:member_id`

Remove a member from the project

**Required Scopes:** `WORKSPACE`

## URL Parameters

```typescript
interface URLParameters {
  /** The human-readable ID of the workspace */
  workspace: string; // Example: "my-company"
  /** The human-readable ID of the project */
  project_name: string; // Example: "my-project"
  /** The ID of the member */
  member_id: number; // Example: 216
}
```

## Response Example

**Status:** `204 Project member deleted successfully`


---
Original source: https://buddy.works/docs/api/platform/projects/manage-access/delete/member