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

# Delete Team Member

> Remove a team member from the vendor account

<Note>
  **V2 Preview** — This endpoint is part of the V2 API preview. Breaking changes may occur.
</Note>

## Overview

Remove a team member from the vendor account. The team member immediately loses access. This action cannot be undone.

### Use Cases

* Off-board departing team members
* Revoke access for inactive users
* Remove accidentally created accounts

## Path Parameters

<ParamField path="userId" type="string" required>
  The team member's user ID.
</ParamField>

## Response

```json 200 theme={null}
{
  "success": true
}
```

## Example

```bash theme={null}
curl -X DELETE "https://staging-api.puppetvendors.com/settings/team/665a1b2e3d98f0001a2b3c81" \
  -H "x-access-token: YOUR_VENDOR_TOKEN"
```
