---
title: "Team Model Delete"
method: POST
path: "/team/model/delete"
tags: ["team management"]
---

# Team Model Delete

`POST /team/model/delete`

Remove models from a team's allowed model list. Only proxy admin or team admin can remove models.

Parameters:
- team_id: str - Required. The team to remove models from
- models: List[str] - Required. List of models to remove from the team

Example Request:
```
curl --location 'http://0.0.0.0:4000/team/model/delete'     --header 'Authorization: Bearer sk-1234'     --header 'Content-Type: application/json'     --data '{
    "team_id": "team-1234",
    "models": ["gpt-4"]
}'
```

## Request body

- TeamModelDeleteRequest — Request to delete models from a team
  - `team_id` string, required
  - `models` string[], required

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/sea-lion/apis/litellm-api.md) · [All operations](https://skmtc.net/sea-lion/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sea-lion/litellm-api/revisions/1e929292ddd5/schema)
