# Delete Org

> Delete one or more organizations from a live LiteLLM proxy. Ask for the organization_id(s) and confirm before calling DELETE /organization/delete.

- Skill: `berriai/delete-org` (Agent Skill)
- Install (CLI): `npx skillmds@latest add berriai/delete-org`
- Raw SKILL.md: https://api.skillmd.com/api/skills/berriai/delete-org/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- License: MIT
- Author: BerriAI (https://skillmd.com/u/berriai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/berriai/delete-org

---


# Delete Organization

Delete one or more organizations from a live LiteLLM proxy.

## Setup

```
LITELLM_BASE_URL  — e.g. https://my-proxy.example.com
LITELLM_API_KEY   — proxy admin key
```

## Ask the user

1. **organization_id(s)** — if they don't have them, list first:
   ```bash
   curl -s "$BASE/organization/list" -H "Authorization: Bearer $KEY"
   ```
2. **Confirm** — show the org alias and ask for confirmation before deleting.

## Run

```bash
curl -s -X DELETE "$BASE/organization/delete" \
  -H "Authorization: Bearer $KEY" \
  -H "Content-Type: application/json" \
  -d '{"organization_ids": ["<org_id>"]}'
```

## Output

Show the deleted org ID(s) and alias(es) from the response.

