---
title: "Unblock User"
method: POST
path: "/customer/unblock"
tags: ["Customer Management"]
---

# Unblock User

`POST /customer/unblock`

[BETA] Unblock calls with this user id

Example
```
curl -X POST "http://0.0.0.0:8000/user/unblock"
-H "Authorization: Bearer sk-1234"
-d '{
"user_ids": [<user_id>, ...]
}'
```

## Request body

- BlockUsers
  - `user_ids` string[], required

## Response `200`

Successful Response

- UnblockUsersResponse
  - `blocked_users` string[], required — User IDs that remain blocked after this unblock call

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-18** `082b5fabd909` — 1 breaking, 3 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 `blocked_users` to the response with the `200` status

[Change history](https://skmtc.dev/flock/apis/litellm-api/changes/customer/unblock/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/731afbea6a1b?raw)
