> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bedrock.quarry-systems.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete User

> Delete a user

## Path Parameters

<ParamField path="id" type="string" required>
  The user ID to delete
</ParamField>

## Response

Returns 204 No Content on success.

<Warning>
  Deleting a user will also remove their tenant memberships and associated subject.
</Warning>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE 'https://api.example.com/users/user_jane' \
    -H 'Authorization: Bearer YOUR_TOKEN'
  ```
</RequestExample>
