---
title: "Delete End User"
method: POST
path: "/customer/delete"
tags: ["Customer Management"]
---

# Delete End User

`POST /customer/delete`

Delete multiple end-users.

Parameters:
- user_ids (List[str], required): The unique `user_id`s for the users to delete

Example curl:
```
curl --location 'http://0.0.0.0:4000/customer/delete'         --header 'Authorization: Bearer sk-1234'         --header 'Content-Type: application/json'         --data '{
        "user_ids" :["ishaan-jaff-5"]
}'

See below for all params 
```

## Request body

- DeleteCustomerRequest — Delete multiple Customers
  - `user_ids` string[], required

## Response `200`

Successful Response

- DeleteCustomersResponse
  - `deleted_customers` integer, required
  - `message` string, required

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-18** `082b5fabd909` — 1 breaking, 4 info
  - the response's body type changed from no type to `object` for status `200`
  - added the optional property `detail/items/ctx` to the response with the `422` status
  - added the optional property `detail/items/input` to the response with the `422` status
  - added the required property `deleted_customers` to the response with the `200` status
  - …1 more

[Change history](https://skmtc.dev/flock/apis/litellm-api/changes/customer/delete/post.md)

---

[API](https://skmtc.dev/flock/apis/litellm-api.md) · [All operations](https://skmtc.dev/flock/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc.dev/flock/apis/litellm-api/revisions/c71315002afa?raw)
