---
title: "Remove Project Users"
method: DELETE
path: "/api/v1/vault/projects/{project_id}/users"
tags: ["Vault"]
---

# Remove Project Users

`DELETE /api/v1/vault/projects/{project_id}/users`

Removes direct workspace user shares for specified users (identified by email address) from a Vault project. Only direct `WORKSPACE_USER` shares are removed; inherited access via workspace, group, or space shares is not affected. Per-user validation failures (e.g. unknown email, inactive user, project owner, self-removal) are returned in the `failed` list rather than rejecting the entire request.

Requires vault sharing to be enabled.

## Path parameters

- `project_id` string, uuid, required

## Request body

- object
  - `emails` string[], required — List of workspace user email addresses whose direct shares should be removed from the project

## Response `200`

Successfully processed removal request

- object
  - `status` 'COMPLETED', required — Status of the request
  - `data` object, required
    - `project_id` string, uuid, required — The project ID
    - `removed` string[], required — Email addresses of users whose direct shares were successfully removed
    - `failed` object[], required — Users whose share removal failed, with per-user reasons
      - `email` string, email, required — The email address that failed
      - `reason` string, required — Why the removal failed (e.g. "User not found", "Cannot remove project owner", "Duplicate email in request")

## Other responses

- `400` — Bad request - malformed request body (e.g. missing required fields, invalid JSON)
- `401` — Unauthorized - Invalid or missing API token
- `403` — Forbidden - User lacks required permissions, vault sharing is disabled, or project access is denied
- `404` — Project not found
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.dev/harvey/apis/harvey-client-matter-api.md) · [All operations](https://skmtc.dev/harvey/apis/harvey-client-matter-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/harvey/harvey-client-matter-api/revisions/4a9e0925d49e/schema)
