# Delete Team Member

> This endpoint deletes a team member from the specified team.

## Endpoint

`DELETE https://api.upstash.com/v2/teams/member`

## Request body

- `team_id` (string, required): Id of the team to remove the member from
- `member_email` (string, required): Email of the team member to remove

## Responses

### 200 - Team member deleted successfully


## cURL

```bash
curl --request DELETE \
  --url https://api.upstash.com/v2/teams/member \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "team_id": "95849b27-40d0-4532-8695-d2028847f823",
    "member_email": "example@upstash.com"
  }'
```
